.contact-info-section {
    padding: 100px 0;
    background-color: #fff;
}

.contact-v2-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.contact-v2-header h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 900;
}

.contact-v2-header p {
    font-size: 1.25rem;
    color: #333;
    line-height: 1.6;
    font-weight: 600;
}

.contact-v2-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.illustration-side {
    display: flex;
    justify-content: center;
}

.contact-v2-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.info-side-v2 {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-row-v3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-block-v3 {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.icon-box-red {
    min-width: 55px;
    height: 55px;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.info-content-v3 h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 8px;
    font-weight: 900;
}

.info-content-v3 p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #333;
    font-weight: 500;
}

@media (max-width: 1100px) {
    .contact-v2-main {
        gap: 40px;
    }
}

@media (max-width: 968px) {
    .contact-v2-main {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .info-block-v3 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info-row-v3 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-v2-header h2 {
        font-size: 2.8rem;
    }
}

.contact-hero-section {
    position: relative;
    width: 100%;
    min-height: 85vh;
    background-color: var(--primary-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 80px;
}

.contact-hero-content {
    max-width: 470px;
    margin-left: 0;
}

.contact-hero-content h1 {
    font-size: 5rem;
    color: var(--white);
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-weight: 900;
    text-shadow: none;
}

.contact-hero-content p {
    font-size: 1.15rem;
    color: var(--white);
    line-height: 1.65;
    font-weight: 500;
    font-family: var(--font-body);
    max-width: 340px;
}

.message-section {
    background: linear-gradient(to bottom, var(--primary-color) 75%, transparent 75%);
    padding: 60px 0 100px;
    position: relative
}

.text-center {
    text-align: center
}

.section-title h2 {
    margin-bottom: 10px;
    font-size: 2.5rem
}

.contact-form {
    background: var(--primary-light);
    z-index: 20;
    text-align: left;
    max-width: 800px;
    color: var(--text-color);
    border-radius: 8px;
    margin: 40px auto -150px;
    padding: 40px;
    position: relative;
    box-shadow: 0 15px 40px #0000001a
}

.form-group {
    margin-bottom: 20px
}

.form-group label {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
    display: block
}

.form-group input, .form-group textarea {
    width: 100%;
    font-family: var(--font-body);
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 12px
}

.form-group textarea {
    resize: vertical
}

.submit-btn {
    width: 100%;
    max-width: 200px;
    padding: 12px
}


@media (max-width: 968px) {
    .contact-hero-content {
        max-width: 100%;
        padding: 30px;
    }

    .contact-hero-content h1 {
        font-size: 4rem;
    }

}

@media (max-width: 900px) {
    .section {
        padding: 60px 0
    }

    .contact-form {
        margin-bottom: -100px
    }

    .site-footer {
        padding-top: 100px
    }

    .info-row {
        flex-direction: column
    }

    .footer-bottom-area {
        flex-direction: column;
        align-items: flex-start
    }

    .newsletter-form-col, .input-group, .input-row {
        width: 100%;
    }

    .input-row input {
        width: 100%;
        margin-right: 4px;
    }

    .input-row input, .input-row button {
        border-radius: 4px;
    }
}

@media (max-width: 576px) {
    .contact-hero-content {
        text-align: center;
    }

    .contact-hero-content h1 {
        font-size: 3rem;
    }
}