:root {
    --color-green: #556B2F;
    --color-orange: #E07A5F;
    --color-white: #F4F1DE;
    --color-dark: #3D405B;
    --color-accent: #F2CC8F;
    --font-main: 'Outfit', sans-serif;
    --container-width: 1100px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--color-dark);
    background-color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.3rem;
    color: var(--color-green);
}

.logo img {
    height: 35px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--color-orange);
}

/* Buttons */
.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    border: none;
    display: inline-block;
    font-family: var(--font-main);
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn-primary {
    background-color: var(--color-orange);
    color: white;
}

.btn-secondary {
    background-color: var(--color-green);
    color: white;
}

.btn-outline {
    border: 2px solid var(--color-green);
    color: var(--color-green);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Hero */
.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, white 0%, #fef8f5 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.highlight {
    color: var(--color-green);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.hero-image img,
.section-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

.img-responsive {
    max-width: 100%;
    height: auto;
}

/* Sections */
.section {
    padding: 8rem 0;
}

.bg-light {
    background-color: var(--color-white);
}

.card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 6rem;
}

.reverse {
    direction: rtl;
}

.reverse>* {
    direction: ltr;
}

.section-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.text-orange {
    color: var(--color-orange);
}

.text-green {
    color: var(--color-green);
}

.features {
    list-style: none;
    margin-top: 2rem;
}

.features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
}

.features li::before {
    content: '✓';
    color: var(--color-green);
    font-weight: 900;
}

/* Forms */
.form-card {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.form-card.dark {
    background: var(--color-dark);
    color: white;
}

.form-card h3 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.form-group-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group-row .form-group {
    flex: 1;
}

@media (max-width: 600px) {
    .form-group-row {
        flex-direction: column;
        gap: 0;
    }
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-family: var(--font-main);
    font-size: 1rem;
}

.form-card.dark input,
.form-card.dark select {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.form-card.dark select option {
    background-color: var(--color-dark);
    color: white;
}

.form-card .btn {
    margin-top: 1.5rem;
}

/* Footer */
.footer {
    padding: 4rem 0;
    border-top: 1px solid #eee;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    text-decoration: none;
    color: #888;
    font-size: 0.9rem;
}

.copyright {
    color: #aaa;
    font-size: 0.8rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-container,
    .card-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .nav {
        display: none;
        /* Simplification for small screens without hamburger */
    }

    .hero-image {
        order: -1;
    }

    .hero {
        padding: 3rem 0;
    }

    .section {
        padding: 4rem 0;
    }

    .card-grid.reverse {
        direction: ltr;
    }
}