* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #121212;
    line-height: 1.6;
}

/* Navigation Header */
.nav-header {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    padding: 24px 96px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
}

.nav-logo img {
    height: 88px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 64px;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #121212;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00A758;
}

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-outline {
    border: 1px solid #00A758;
    background: transparent;
    color: #00A758;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #00A758;
    color: #ffffff;
}

.btn-primary {
    background: #00A758;
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #008a47;
}

/* Title Banner */
.title-banner {
    background: #00A758;
    padding: 24px 96px;
    color: #ffffff;
}

.title-banner h1 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

/* Main Content */
.main-content {
    padding: 64px 96px 184px;
}

.contact-row {
    gap: 0px;
}


/* Contact Info Card */
.contact-info-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-image {
    height: 258px;
    overflow: hidden;
    background: #d9d9d9;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-details {
    background: #F9F9F9;
    padding: 36px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 42px;
    height: 42px;
    border: 0.525px solid #DBDBDB;
    border-radius: 5.25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon img {
    width: 24.5px;
    height: 24.5px;
}

.contact-text h4 {
    font-size: 16px;
    font-weight: 500;
    color: #101010;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.contact-text p {
    font-size: 14px;
    font-weight: 400;
    color: #101010;
    margin: 0;
    line-height: 1;
}

.contact-text p:not(:last-child) {
    margin-bottom: 4px;
}

/* Contact Form Section */
.contact-form-section {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.contact-form-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: #101010;
    line-height: 1;
    margin: 0;
}
@media (max-width: 393px) {
    .contact-form-section h2 {
        margin-top: 30px;
    }
}

.form-description {
    font-size: 16px;
    font-weight: 300;
    color: #101010;
    line-height: 28px;
    margin: 0;
}

.contact-form {
    background: #F4F4F4;
    padding: 36px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-group {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 32px;
}

.form-row .form-group {
    flex: 1;
}

.form-input,
.form-textarea {
    width: 100%;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 22px 16px;
    font-size: 16px;
    font-weight: 400;
    color: #101010;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s ease;
    height: 40px;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #3B3B3B;
    font-size: 16px;
    font-weight: 400;
}

.form-input:focus,
.form-textarea:focus {
    border: 1px solid #00A758;
}

.form-textarea {
    resize: vertical;
    min-height: 96px;
    padding-top: 22px;
    padding-bottom: 96px;
    height: 160px;
}

.btn-submit {
    background: #00A758;
    color: #ffffff;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    height: 45px;
}

.btn-submit:hover {
    background: #008a47;
}

/* Mobile Contact Info */
.mobile-contact-info {
    display: none;
}

.contact-image-mobile {
    height: 324px;
    border-radius: 8px;
    overflow: hidden;
    background: #d9d9d9;
    margin-bottom: 24px;
}

.contact-image-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-details-mobile {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.contact-info-item {
    display: flex;
    gap: 8px;
    align-items: center;
}

.contact-icon-mobile {
    width: 24px;
    height: 24px;
    background: #00A758;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-mobile img {
    width: 16px;
    height: 16px;
}

.contact-info-item span {
    font-size: 14px;
    font-weight: 400;
    color: #101010;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: #005C30;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.footer-desktop {
    display: block;
    padding: 64px 10px;
}

.footer-desktop::before {
    content: '';
    position: absolute;
    top: -2px;
    right: 80px;
    width: 327.644px;
    height: 355px;
    background: url('https://www.figma.com/api/mcp/asset/96df9f3b-b183-4e65-aa48-1e3efa7d2912') no-repeat;
    background-size: contain;
    opacity: 0.15;
    mix-blend-mode: soft-light;
    pointer-events: none;
}

.footer-mobile {
    display: none;
}

.footer-desktop .footer-content {
    display: flex;
    justify-content: space-between;
    gap: 36px;
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-desktop .footer-brand {
    display: flex;
    gap: 12px;
    align-items: start;
    max-width: 400px;
}

.footer-desktop .footer-logo {
    height: 64px;
    width: 59.068px;
    flex-shrink: 0;
}

.footer-desktop .footer-brand p {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    color: #ffffff;
    width: 300px;
    margin-top: 10px;
}

.footer-desktop .footer-links {
    display: flex;
    gap: 36px;
    align-items: flex-start;
}

.footer-desktop .footer-column {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.footer-desktop .footer-column a {
    font-size: 11.5px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-desktop .footer-column a:hover {
    opacity: 0.8;
}

.footer-desktop .footer-newsletter {
    border: 0.4px solid #ffffff;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 300px;
}

.footer-desktop .footer-newsletter p {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}

.footer-desktop .newsletter-input {
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    overflow: hidden;
}

.footer-desktop .newsletter-input input {
    flex: 1;
    border: none;
    padding: 8px 16px;
    font-size: 12px;
    color: #B2B2B2;
    outline: none;
    width: 100px;
}

.footer-desktop .newsletter-input button {
    background: #00A758;
    color: #ffffff;
    border: none;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
}

.footer-desktop .footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    margin: 24px 0;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
}

.footer-desktop .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-desktop .footer-bottom p {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-family: 'Helvetica', sans-serif;
}

.footer-desktop .social-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-desktop .social-links a {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-desktop .social-links img {
    width: 100%;
    height: 100%;
}

/* Mobile Responsive */
@media (max-width: 393px) {
    .nav-header {
        padding: 24px;
    }
    
    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .title-banner {
        padding: 24px;
    }
    
    .title-banner h1 {
        font-size: 28px;
    }
    
    .main-content {
        padding: 0 24px 32px;
    }
    
    .contact-info-col {
        display: none;
        width: 100%;
    }
    
    .contact-form-col {
        width: 100%;
        padding: 0;
        margin-bottom: 24px;
        height: 100%;
    }
    
    .contact-form-section {
        gap: 24px;
    }
    
    .contact-form-section h2 {
        font-size: 24px;
        line-height: 1.1;
    }
    
    .form-description {
        font-size: 20px;
        line-height: 1.5;
    }
    
    .contact-form {
        padding: 0;
        background: transparent;
        gap: 24px;
    }
    
    .form-input,
    .form-textarea {
        background: #ffffff;
        border: 1px solid #B2B2B2;
        padding: 22px 16px;
        font-size: 16px;
    }
    
    .form-textarea {
        padding-bottom: 96px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 24px;
    }
    
    .btn-submit {
        width: 100%;
        height: 64px;
        padding: 20px 24px;
        font-size: 14px;
        line-height: 1.1;
    }
    
    .mobile-contact-info {
        display: block;
    }
    
    /* Mobile Footer */
    .footer-desktop {
        display: none;
    }
    
    .footer-mobile {
        display: block;
        padding: 24px;
        position: relative;
    }
    
    .footer-mobile::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: -55px;
        bottom: 0;
        background: url('https://www.figma.com/api/mcp/asset/96df9f3b-b183-4e65-aa48-1e3efa7d2912') no-repeat;
        background-size: 300px;
        background-position: center right;
        opacity: 0.1;
        pointer-events: none;
        z-index: 0;
    }
    
    .footer-mobile > * {
        position: relative;
        z-index: 1;
    }
    
    .footer-newsletter-mobile {
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 8px;
        padding: 16px;
        margin-bottom: 24px;
    }
    
    .footer-newsletter-mobile p {
        font-size: 14px;
        font-weight: 500;
        color: #ffffff;
        margin: 0 0 16px 0;
        text-align: center;
    }
    
    .newsletter-input-mobile {
        background: #ffffff;
        border-radius: 8px;
        display: flex;
        overflow: hidden;
    }
    
    .newsletter-input-mobile input {
        flex: 1;
        border: none;
        padding: 12px 16px;
        font-size: 12px;
        color: #B2B2B2;
        outline: none;
        width: 87%;
    }
    
    .newsletter-input-mobile button {
        background: #00A859;
        color: #ffffff;
        border: none;
        padding: 12px 24px;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        white-space: nowrap;
        width: 74px !important;
    }
    
    .footer-links-mobile {
        display: flex;
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .footer-column-mobile {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-column-mobile a {
        font-size: 14px;
        font-weight: 400;
        color: #E0FFE0;
        text-decoration: none;
    }
    
    .footer-brand-mobile {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 24px;
    }
    
    .footer-logo-mobile {
        width: 64px;
        height: 64px;
        flex-shrink: 0;
    }
    
    .footer-brand-mobile p {
        font-size: 14px;
        font-weight: 400;
        color: #E0FFE0;
        line-height: 1.4;
        margin: 0;
    }
    
    .social-links-mobile {
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-bottom: 24px;
    }
    
    .social-links-mobile a {
        width: 32px;
        height: 32px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .social-links-mobile img {
        width: 20px;
        height: 20px;
    }
    
    .footer-copyright {
        font-size: 14px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.6);
        text-align: center;
        margin: 0;
    }
}

@media (min-width: 394px) and (max-width: 991px) {
    .nav-header {
        padding: 24px 48px;
    }
    
    .title-banner {
        padding: 24px 48px;
    }
    
    .main-content {
        padding: 64px 48px 184px;
    }
    
    .contact-info-col {
        margin-bottom: 32px;
    }
    
    .footer {
        padding: 64px 48px;
    }
}

@media (min-width: 992px) {
    .contact-row {
        align-items: flex-start;
    }
}

