html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'vwhead';

}
&,&::after,&::before {
    box-sizing: border-box;
}


.c-baner {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 350px;
    overflow: hidden;
    background-color: #2d2d2d;
}

.c-baner img {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: auto;
    min-width: 100%; 
    object-fit: cover;
    object-position: right center;
}

.c-baner h1 {
    position: absolute;
    bottom: 15%;
    left: 5%;
    margin: 0;
    padding: 0;
    color: white;
    font-weight: bold;
    line-height: 1.1;
    font-size: clamp(2rem, 5vw, 4.5rem); 
}

.c-copy {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 2rem;
}

.c-copy__col:first-child {
    margin-bottom: 2rem;
}

.c-copy h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin: 0;
}

.c-copy h2 b {
    font-weight: 700;
    display: block;
}

.c-copy p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin: 0 0 1rem 0;
}

@media (min-width: 768px) {
    .c-copy {
        display: flex;
        align-items: flex-start;
        gap: 4rem;
    }

    .c-copy__col {
        flex: 1;
    }

    .c-copy__col:first-child {
        margin-bottom: 0;
    }

    .c-copy__col:last-child {
        position: relative;
        padding-left: 4rem;
    }

    .c-copy__col:last-child::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 1px;
        background-color: #e0e0e0;
    }
}


.c-photo-text {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

.c-photo-text__col img {
    width: 100%;
    height: auto;
    display: block;
}

.c-photo-text__col h3 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 300;
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

.c-photo-text__col h3 b {
    font-weight: 700;
}

.c-photo-text__col p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin: 0 0 1rem 0;
}

@media (min-width: 768px) {
    .c-photo-text {
        display: flex;
        align-items: center;
        gap: 4rem;
    }

    .c-photo-text__col {
        flex: 1;
        min-width: 0;
    }
    
    .c-photo-text:nth-of-type(odd) {
        flex-direction: row-reverse;
    }
}


.c-box {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

.c-box__col {
    display: flex;
    flex-direction: column;
}

.c-box__col:not(:last-child) {
    margin-bottom: 2rem;
}

.c-box__image img {
    display: block;
    width: 100%;
    height: auto;
}

.c-box__text {
    padding: 1.5rem;
}

.c-box__text h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.c-box__text p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

@media (min-width: 992px) {
    .c-box {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .c-box__col:not(:last-child) {
        margin-bottom: 0;
    }
}

.c-title {
    max-width: 900px;
    margin: 4rem auto;
    padding: 2rem 1rem;
    text-align: center;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.c-title h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 300;
    line-height: 1.3;
    margin: 0;
    color: #111;
}

.c-title h2 b {
    font-weight: 700;
    display: block;
}

.c-form {
        background-color: #001e50;
    max-width: 1920px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.c-form__copy {
    color: white;
    padding: 4rem 2rem;
}

.c-form__copy h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 300;
    line-height: 1.3;
    margin: 0 0 1rem 0;
}

.c-form__copy h2 b {
    font-weight: 700;
}

.c-form__copy p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 450px;
    opacity: 0.9;
}

.c-form__containter {
    padding: 2rem;
    background-color: #ffffff;
}

@media (min-width: 992px) {
    .c-form {
        display: flex;
    }

    .c-form__copy {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 3rem;
    }

    .c-form__containter {
        flex: 1;
        padding: 3rem;
    }
}

.c-contact-form__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0 2rem;
}

@media (min-width: 768px) {
    .c-contact-form__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.c-contact-form__field {
    position: relative;
    margin-bottom: 2.5rem;
}

.c-contact-form__label {
    position: absolute;
    top: 0.5rem;
    left: 0;
    color: #6c757d;
    pointer-events: none;
    transition: all 0.2s ease-out;
}

.c-contact-form__input {
    width: 100%;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #212529;
    background-color: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #ced4da;
    transition: border-color 0.2s ease-out;
}

.c-contact-form__input:focus {
    outline: none;
    border-bottom: 2px solid #001e50;
}

.c-contact-form__input:focus + .c-contact-form__label,
.c-contact-form__input.has-value + .c-contact-form__label {
    top: -1.2rem;
    font-size: 0.8rem;
    color: #001e50;
}

.c-contact-form__input.c-contact-form__input--textarea {
    min-height: 80px;
    border-bottom: 1px solid #ced4da;
    border-radius: 4px;
    padding: 1.5rem 1rem 0.5rem 1rem;
}

.c-contact-form__input.c-contact-form__input--textarea:focus + .c-contact-form__label,
.c-contact-form__input.c-contact-form__input--textarea.has-value + .c-contact-form__label {
    top: 0.5rem;
    left: 0.75rem;
    font-size: 0.75rem;
    background-color: white;
    padding: 0 0.25rem;
}

.c-contact-form__error {
    color: #d93025;
    font-size: 0.8rem;
    padding-top: 4px;
    display: block;
}

.c-contact-form__consent-group {
    margin-top: 1rem;
    padding-top: 1rem;
}

.c-contact-form__info-text {
    font-size: 0.75rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.c-contact-form__subheading {
    font-size: 1rem;
    font-weight: 700;
    color: #212529;
    margin: 2rem 0 1rem 0;
}

.c-contact-form__checkbox-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.c-contact-form__checkbox-label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #212529;
}

.c-contact-form__checkbox-input {
    display: none;
}

.c-contact-form__checkbox-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background-color: white;
}

.c-contact-form__checkbox-label::after {
    content: '✔';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: white;
    opacity: 0;
    transition: opacity 0.2s;
}

.c-contact-form__checkbox-input:checked + .c-contact-form__checkbox-label::before {
    background-color: #001e50;
    border-color: #001e50;
}

.c-contact-form__checkbox-input:checked + .c-contact-form__checkbox-label::after {
    opacity: 1;
}

.c-contact-form__button {
    display: block;
    width: auto;
    margin: 2.5rem auto 0 auto;
    background-color: #001e50;
    color: white;
    border: none;
    padding: 0.9rem 4rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.c-contact-form__button:hover {
    background-color: #003380;
}