body {
    margin: 0;
    font-family: 'Montserrat';
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}


.top-div {
    position: relative;
}

.investor-image{
    width: 100%;
    height: 390px;
}


.centered-text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 98%;
    transform: translate(-50%, -50%);
    font-size: 3.75rem;
    font-weight: bold;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); 
}


.bottom-div {
    padding: 2% 8%;
    gap: 20px;

}


.title {
    font-size: 2.25rem;
    text-align: center;
    position: relative;
    color: #004903;
    padding-bottom: 20px;
    font-weight: 600;
}



.introdiv {
    padding-top: 20px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%
}

.introitem {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.introitem span {
    color: #20272f;
    line-height: 1.5;
}




.pointsdiv {
    width: 100%;
}

.pointitem {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.pointitem img {
    width: 30px;
    height: 30px;
    align-self: center;
}

.pointitem p {
    width: 100%;
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0;
}

.pointitem a {
    color: #004903;
    text-decoration: underline;
    font-weight: 600;
    word-wrap: break-word;
    word-break: break-all; 
    display: inline; 
}

.phone-number {
    font-weight: 600; 
    color: #004903;
}

.linksdiv {
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%
}

.linkitem {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.linkitem span {
    color: #20272f;
    line-height: 1.5;
}

.linkitem a {
    color: #004903;
    text-decoration: underline;
    font-weight: 600;
    word-wrap: break-word;
    word-break: break-all;
    display: inline; 

}

.linkitem a:hover {
    text-decoration: underline;
}



@media (max-width: 1200px) {

    .investor-image {
        height: auto;
    }


}

@media (max-width: 768px) {


    .centered-text {
        font-size: 3.3rem;
    }

    .title {
        font-size: 2.25rem;
    }

    .pointitem p {
        font-size: 1.15rem;
    }

    .linkitem {
        font-size: 1.15rem;
    }

}

@media (max-width: 670px) {


    .centered-text {
        font-size: 2rem;
    }

}

@media (max-width: 600px) {

    .pointitem {
        text-align: justify;
    }

}

@media (max-width: 480px) {

    .pointitem img {
        width: 20px;
        height: 20px;
    }

}



