:root {
    --bg-color: #fbf9f1;
    --text-primary: #1b3b22;
    --text-secondary: #5a6d5f;
    --accent-green: #4f8a55;
    --button-green: #1e4b27;
    --box-bg: #f1f4e6;
    --border-color: #d1d8d3;
    --white: #ffffff;
}

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

html,
body {
    min-height: 120vh;
    overflow-y: auto;
    overflow-x: hidden;
    font-size: 19px;
}

html {
    background-color: var(--bg-color) !important;
    min-height: 100vh;
}

body {
    background-color: transparent;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
}

/* Corner Decorations */
.decoration.top-left,
.decoration.bottom-left,
.decoration.bottom-right {
    position: fixed;
    z-index: -1;
    pointer-events: none;
}

.decoration.top-left {
    top: 0;
    left: 0;
    width: 300px;
    /* Adjust size based on design */
}

.decoration.bottom-left {
    bottom: 0;
    left: 0;
    width: 200px;
    /* Adjust size based on design */
}

.decoration.bottom-right {
    bottom: 0;
    right: 0;
    width: 200px;
    /* Adjust size based on design */
}

@media (max-width: 800px) {

    .decoration.top-left,
    .decoration.bottom-left,
    .decoration.bottom-right {
        display: none;
    }


}

/* Background elements simulating leaf shapes */
body::before {
    content: '';
    position: fixed;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(241, 244, 230, 0.8) 0%, rgba(251, 249, 241, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: -50px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(241, 244, 230, 0.6) 0%, rgba(251, 249, 241, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 2vh 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
}

/* Header */
header {
    text-align: center;
    flex-shrink: 0;
}

.logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
}

.logo img {
    height: 120px;
    /* Adjust height as needed */
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 0 auto 2vh auto;
    width: 100%;
    max-width: 1000px;
    flex-shrink: 0;
}

.hero-content {
    flex: 0 1 550px;
}

.hero-image {
    flex: 0 1 400px;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    max-height: 50vh;
    object-fit: contain;
}

h1,
h2 {
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 0.4rem;
}

.divider {
    display: flex;
    justify-content: flex-start;
    margin: 0.2rem 0 0.4rem 0;
}

.divider img {
    padding-left: 25%;
    height: 15px;
    width: auto;
    object-fit: contain;
}

.hero-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.info-box {
    background-color: #f3f4e3;
    border-radius: 25px;
    padding: 0.25rem; /* Equal padding on all sides */
    display: flex;
    align-items: center;
    gap: 0.8rem;
    max-width: max-content;
    white-space: nowrap;
    padding-top: 0.9rem;
}

.info-icon {
    background-color: rgba(79, 138, 85, 0.1);
    padding: 0.4rem;
    border-radius: 50%;
    display: flex;
}

.info-icon svg {
    width: 16px;
    height: 16px;
}

.info-main {
    font-size: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
}

.info-sub {
    font-size: 0.75rem;
    color: var(--button-green) !important;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    max-width: 1000px;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-header {
    text-align: center;
    margin-bottom: 0.5rem;
}

.contact-header h2 {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.contact-header .divider {
    display: flex;
    justify-content: center;
    margin: 0.1rem 0 0.2rem 0;
}

.contact-header p {
    color: var(--text-secondary);
    font-size: 0.7rem;
    margin-bottom: 0.4rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.4rem;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0 0.5rem;
}

.input-group.align-top {
    align-items: flex-start;
    padding-top: 0.3rem;
}

.input-icon {
    color: var(--text-secondary);
    margin-right: 0.4rem;
    flex-shrink: 0;
    width: 12px;
   
}

input,
select,
textarea {
    width: 100%;
    border: none;
    outline: none;
    padding: 0.35rem 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: var(--text-primary);
    background: transparent;
}

select {
    appearance: none;
    cursor: pointer;
}

textarea {
    resize: none;
    height: 38px;
}

input::placeholder,
textarea::placeholder {
    color: #9ba69e;
}

.submit-btn {
    background-color: var(--button-green);
    color: var(--white);
    border: none;
    border-radius: 6px;
    padding: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #15381d;
}

.privacy-note {
    text-align: center;
    font-size: 0.65rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

/* Footer */
footer {
    background-color: var(--box-bg);
    border-radius: 8px;
    padding: 0.9rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    flex-shrink: 0;
    width: 70%;
}

.feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.feature-icon {
    background-color: rgba(79, 138, 85, 0.1);
    padding: 0.3rem;
    border-radius: 50%;
    display: flex;
    flex-shrink: 0;
}

.feature-icon svg,
.feature-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.feature-text h4 {
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.feature-text p {
    font-size: 0.6rem;
    color: var(--text-secondary);
    display: block;
}



.mobile-break {
    display: none;
}

/* Responsive fallback */
@media (max-width: 800px) {

    .mobile-break {
        display: block;
    }

    html,
    body {
        height: auto;
        min-height: 100vh;
        overflow: auto;
    }

    .container {
        height: auto;
        justify-content: flex-start;
        padding: 3vh 1rem 1.5vh 1rem;
        gap: 1.5rem;
    }

    .hero-section {
        flex-direction: column-reverse;
        text-align: center;
        gap: 1.5rem;
    }

    .hero-image {
        flex: none;
        width: 100%;
    }

    .hero-image img {
        width: 100%;
        max-height: 250px;
    }

    .hero-content {
        flex: none;
        width: 100%;
    }

    .hero-content h1 {
        text-align: center;
    }

    .hero-content .divider {
        justify-content: center;
    }

    .hero-content .divider img {
        padding-left: 0;
    }

    .hero-content p {
        margin: 0 0 1.5rem 0;
        text-align: center;
        font-size: 0.6rem;
        padding: 0 0.5rem;
    }

    .info-box {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto !important;
        gap: 0.8rem !important;
        padding: 0.6rem 1.2rem !important;
        background-color: #f3f4e3 !important;
        border-radius: 25px;
        box-sizing: border-box;
        width: max-content;
        max-width: 95%;
    }

    .info-icon {
        width: 36px !important;
        height: 36px !important;
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background-color: rgba(79, 138, 85, 0.1);
        border-radius: 50%;
        padding: 0 !important;
    }

    .info-icon img {
        height: 20px !important;
        width: 20px !important;
        object-fit: contain;
    }

    .info-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left;
        min-width: 0;
    }

    .info-main {
        font-size: 0.62rem;
        line-height: 1.3;
        white-space: nowrap;
        text-align: left !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .info-sub {
        font-size: 0.62rem;
        line-height: 1.3;
        white-space: nowrap;
        text-align: left !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .form-row-3 {
        grid-template-columns: 1fr;
    }

    footer {
        grid-template-columns: repeat(4, 1fr);
        padding: 1.2rem 0.5rem;
        width: 100%;
        margin: 0.5rem auto 1rem auto;
        border-radius: 15px;
        gap: 0.2rem;
        box-sizing: border-box;
    }

    .feature {
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
        align-items: center;
    }

    .feature-icon {
        background-color: transparent !important;
        padding: 0 !important;
        margin-bottom: 0.1rem;
    }

    .feature-icon img {
        width: 22px !important;
        height: 22px !important;
    }

    .feature-text h4 {
        font-size: 0.55rem;
        font-weight: 500;
        line-height: 1.2;
    }

    .feature-text p {
        display: none;
    }
}