.specific-questions {
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 5% !important;
    padding-right: 5% !important;
}

.specific-questions .heading-2 {
    color: #1B365D;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 60px;
    text-align: left;
    line-height: 1.1;
}

.specific-questions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 100px;
}

.specific-contact-card {
    background: transparent;
    padding: 0;
}

.specific-contact-card .heading-3 {
    color: #E4794B;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: "Roboto", sans-serif;
}

.specific-contact-card .contact-person {
    color: #102F44;
    font-size: 16px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
}

.specific-contact-card .contact-phone {
    color: #102F44;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
}

.specific-contact-card .contact-email {
    margin-bottom: 0;
    font-family: "Roboto", sans-serif;
}

.specific-contact-card .contact-email a {
    color: #102F44;
    font-size: 16px;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
}

.specific-contact-card .contact-email a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 991px) {
    .specific-questions {
        padding: 60px 0;
    }

    .specific-questions .heading-2 {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .specific-questions-grid {
        gap: 30px 60px;
    }
}

@media screen and (max-width: 767px) {
    .specific-questions {
        padding: 40px 0;
    }

    .specific-questions .heading-2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .specific-questions-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
} 