#home {
    height: 100%;
    margin-top: 5%;
    overflow: none;
}

.page-title {
    text-align: center;
    font-size: 2.8rem;
    color: #1B4F72;
    margin: 100px 0 60px;
}

.survey-div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-top: 2rem;
    width: 80%;
    text-align: left;
    color: #333;
}

.survey-div p {
    line-height: 1.1;
    margin-bottom: 1rem !important;
}

.survey-div ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;

}

.survey-div li {
    margin-bottom: 0.5rem;
    color: #333;
}

.survey-link-1, .survey-link-2 {
    display: block;
    color: transparent;
    background-color: transparent;
    text-decoration: none;
    margin: 1rem;
}

.italic-p {
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 1.8rem;
}

.survey-div-2 {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #7DD3C5;
}

.contact-info-survey {
    margin: 1rem;
    font-size: 1rem;
    color: #333;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.contact-info-survey div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    margin: 0.5rem;
    background-color: #e4e4e4;
    border-radius: 15px;
}

.contact-info-survey div a {
    color: #1B4F72;
    text-decoration: none;
    font-weight: bold;
}

.contact-info-survey div a:hover {
    text-decoration: underline;
}

.contact-info-survey div h2 {
    font-size: 1.1rem;
    margin: 0;
    color: #1B4F72;
}

@media (max-width: 1200px) {
    .survey-div {
        width: 90%;
    }
}

@media (max-width: 768px) {
    #home {
        height: auto;
        min-height: 100%;
        margin-top: 2rem;
        overflow: visible;
    }

    .page-title {
        font-size: 2.2rem;
        margin: 2rem 0 2rem;
    }

    #home > h3 {
        font-size: 1.35rem;
        line-height: 1.3;
        text-align: center;
    }

    #home > p,
    .survey-div {
        width: 100%;
    }

    .survey-div-2 {
        padding: 1.25rem;
    }

    .survey-link-1,
    .survey-link-2 {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }

    .survey-link-1 img,
    .survey-link-2 img {
        max-width: 100%;
        height: auto;
    }

    .contact-info-survey {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .contact-info-survey div {
        width: 100%;
        margin: 0.5rem 0;
        overflow-wrap: anywhere;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
        margin: 1.5rem 0;
    }

    #home > h3 {
        font-size: 1.15rem;
    }

    .survey-div-2 {
        padding: 1rem;
    }

    .survey-div p,
    .survey-div li,
    .contact-info-survey {
        font-size: 0.95rem;
    }
}