:root {
    --primary-green: #0abab5;
    --light-blue: #b7e0ea;
    --light-yellow: #f8bf5d;
    --text-dark: #000000;
}

body {
    margin: 0;
}

.hero-banner {
    position: relative;
    background-color: var(--primary-green);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 40px;
    overflow: hidden;
    min-height: 60vh;
    height: auto;
}

.hero-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex-basis: 50%;
    padding-right: 60px;
}

.hero-text h1 {
    font-size: 60px;
    font-weight: 800;
    margin: 0 0 20px 0;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 22px;
    line-height: 1.5;
    margin: 0;
    max-width: 423px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 48px;
    }

    .hero-text p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 60px 20px;
        min-height: 50vh;
    }

    .hero-container {
        width: 100%;
    }

    .hero-text {
        flex-basis: 100%;
        padding-right: 0;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .hero-text p {
        font-size: 16px;
        max-width: none;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        padding: 40px 15px;
        min-height: 40vh;
    }

    .hero-text h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .hero-text p {
        font-size: 14px;
    }
}

.contact-section-v2 {
    width: 100%;
    padding: 100px 60px;
    background-color: #ffffff;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    gap: 80px;
}

.contact-header {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-header h2 {
    font-family: 'Nohemi', sans-serif;
    font-size: 46px;
    font-weight: 700;
    color: #000000;
    line-height: 1.4;
    margin: 0;
}

.contact-list {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-link-card {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.contact-link-card .icon {
    width: 28px;
    height: 28px;
    fill: #0abab5;
    margin-right: 20px;
    flex-shrink: 0;
    transition: fill 0.3s ease;
}

.card-text-content h3 {
    font-family: 'Nohemi', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 4px 0;
    transition: color 0.3s ease;
}

.card-text-content p {
    font-family: 'Articulat CF', sans-serif;
    font-size: 16px;
    color: #666666;
    margin: 0;
    transition: color 0.3s ease;
}

.arrow-icon {
    margin-left: auto;
    width: 24px;
    height: 24px;
    fill: #cccccc;
    transition: transform 0.3s ease, fill 0.3s ease;
}

.contact-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 171, 181, 0.15);
    background-color: #0abab5;
    border-color: #0abab5;
}

.contact-link-card:hover .icon,
.contact-link-card:hover .card-text-content h3,
.contact-link-card:hover .card-text-content p {
    color: #ffffff;
    fill: #ffffff;
}

.contact-link-card:hover .arrow-icon {
    fill: #ffffff;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .contact-section-v2 {
        padding: 80px 20px;
    }

    .contact-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .contact-header {
        text-align: center;
    }

    .contact-header h2 {
        font-size: 48px;
    }

    .contact-list {
        width: 100%;
    }
}

.form-section-split {
    display: flex;
    width: 100%;
    min-height: 90vh;
    background-color: #ffffff;
    font-family: 'Articulat CF', sans-serif;
}

.form-image-pane {
    width: 50%;
    background-color: #f8bf5d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-image-pane img {
    max-width: 80%;
    max-height: 100%;
}

.form-container-pane {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    box-sizing: border-box;
    background-color: #0abab5;
}

.form-container-pane h2 {
    font-family: 'Nohemi', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 10px 0;
}

.form-container-pane .subtitle {
    font-family: 'Articulat CF', sans-serif;
    font-size: 16px;
    color: #333333;
    margin: 0 0 40px 0;
}

.form-group-stacked {
    margin-bottom: 25px;
}

.form-group-stacked label {
    display: block;
    font-family: 'Articulat CF', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 8px;
}

.form-group-stacked label .required {
    color: #e53e3e;
    margin-left: 4px;
}

.form-control-stacked {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 8px;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control-stacked:focus {
    outline: none;
    border-color: #0abab5;
    box-shadow: 0 0 0 3px rgba(10, 186, 181, 0.2);
}

textarea.form-control-stacked {
    min-height: 120px;
    resize: vertical;
}

.form-actions-stacked {
    margin-top: 10px;
}

.form-actions-stacked .submit-btn {
    font-family: 'Articulat CF', sans-serif;
    padding: 14px 30px;
    background-color: #f8bf5d;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-actions-stacked .submit-btn:hover {
    background-color: #4a634a;
}

@media (max-width: 992px) {
    .form-section-split {
        flex-direction: column;
    }

    .form-image-pane {
        width: 100%;
        height: 300px;
        min-height: 300px;
    }

    .form-container-pane {
        width: 100%;
        padding: 60px 40px;
    }

    .form-container-pane h2 {
        font-size: 32px;
    }
}

.newsletter-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 60vh;
    padding: 80px 40px;
    box-sizing: border-box;
    overflow: hidden;
}

.newsletter-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgb(79 79 79 / 21%), rgb(90 90 90 / 30%));
    z-index: 1;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    width: 100%;
    text-align: center;
    color: #ffffff;
    animation: fade-up-in 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    opacity: 0;
    transform: translateY(40px);
}

@keyframes fade-up-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.newsletter-content h2 {
    font-family: 'Nohemi', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 16px 0;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.newsletter-content p {
    font-family: 'Articulat CF', sans-serif;
    font-size: 18px;
    opacity: 0.9;
    margin: 0 0 40px 0;
}

.subscription-form {
    display: flex;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
}

.subscription-form:focus-within {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.5), 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-input-wrapper {
    display: flex;
    align-items: center;
    flex-grow: 1;
    padding-left: 25px;
}

.form-input-wrapper .icon {
    width: 24px;
    height: 24px;
    fill: #999999;
    margin-right: 15px;
}

.subscription-form input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 12px 0;
    font-family: 'Articulat CF', sans-serif;
    font-size: 16px;
    color: #000000;
}

.subscription-form input:focus {
    outline: none;
}

.subscription-form .submit-btn {
    font-family: 'Articulat CF', sans-serif;
    padding: 12px 35px;
    background-color: #0abab5;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.subscription-form .submit-btn:hover {
    background-color: #089a95;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .newsletter-section {
        min-height: 50vh;
        padding: 60px 20px;
    }

    .newsletter-content h2 {
        font-size: 32px;
    }

    .newsletter-content p {
        font-size: 16px;
    }

    .subscription-form {
        flex-direction: column;
        border-radius: 20px;
        background: none;
        box-shadow: none;
        gap: 15px;
    }

    .subscription-form:focus-within {
        box-shadow: none;
    }

    .form-input-wrapper {
        background-color: rgba(255, 255, 255, 0.95);
        border-radius: 50px;
        padding: 8px 8px 8px 25px;
    }

    .subscription-form .submit-btn {
        padding: 16px 35px;
    }
}