:root {
    --primary-color: #1b4332;
    --secondary-color: #40916c;
    --accent-color: #d4af37;
    --accent-hover: #bfa030;
    --bg-color: #f9f6f0;
    --card-bg: #ffffff;
    --text-color: #2d312e;
    --text-muted: #626a64;
    --border-color: #e5e7eb;
    --max-width: 1200px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 18px;
    position: relative;
    overflow-x: hidden;
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 8px;
    z-index: 100;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--primary-color);
    font-weight: 700;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: var(--accent-color);
}

/* Base Layout elements */
header {
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 90;
}
.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-color);
}
.logo img {
    width: 40px;
    height: 40px;
}
.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    align-items: center;
}
.nav-links a {
    font-weight: 500;
    color: var(--text-color);
}
.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
}
.btn-cta {
    background-color: var(--primary-color);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    border: 1px solid var(--primary-color);
}
.btn-cta:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color) !important;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}
.burger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    display: block;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 80px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: var(--text-muted);
}
.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Stats Section */
.stats {
    background-color: var(--primary-color);
    color: #fff;
    padding: 40px 20px;
}
.stats-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}
.stat-item h3 {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 5px;
}

/* How It Works Section */
.steps-section {
    padding: 80px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}
.steps-title {
    text-align: center;
    margin-bottom: 50px;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.step-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.step-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}
.step-card h4 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

/* General Layouts */
.content-wrapper {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
}
.content-wrapper h2 {
    margin-bottom: 20px;
}
.content-wrapper p {
    margin-bottom: 20px;
}

/* Services Grid on index.html */
.services-section {
    background-color: #f1ebd9;
    padding: 80px 20px;
}
.services-container {
    max-width: var(--max-width);
    margin: 0 auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.service-card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.service-info {
    padding: 25px;
}
.service-info h3 {
    margin-bottom: 10px;
}

/* Features Block */
.features {
    padding: 80px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.features-image img {
    width: 100%;
    border-radius: 12px;
}
.features-list {
    list-style: none;
    margin-top: 20px;
}
.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.features-list li i {
    color: var(--secondary-color);
    margin-top: 5px;
}

/* Pricing block */
.pricing {
    padding: 80px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.price-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}
.price-card.popular {
    border: 2px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    position: relative;
    transform: scale(1.03);
}
.price-tag {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 20px 0;
}
.price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: bold;
}
.price-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}
.price-card ul li {
    margin-bottom: 10px;
}

/* Lead Capture Form */
.form-section {
    background-color: var(--primary-color);
    color: #fff;
    padding: 80px 20px;
}
.form-container {
    max-width: 600px;
    margin: 0 auto;
}
.form-container h2 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 10px;
}
.form-container p {
    text-align: center;
    margin-bottom: 30px;
}
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.form-group label {
    font-weight: bold;
}
.form-group input, .form-group textarea {
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #fff;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.95);
    color: #000;
}
.form-group input:focus, .form-group textarea:focus {
    outline: 2px solid var(--accent-color);
}
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
}
.checkbox-group input {
    margin-top: 4px;
    width: 18px;
    height: 18px;
}
.checkbox-group label a {
    color: var(--accent-color);
    text-decoration: underline;
}
.btn-submit {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}
.btn-submit:hover {
    background-color: #fff;
}

/* Q&A / FAQ Accordion style */
.accordion {
    max-width: 800px;
    margin: 40px auto;
}
.accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    border-radius: 5px;
}
.accordion-header {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-content {
    display: none;
    padding: 0 20px 20px;
    color: var(--text-muted);
}

/* Trust Layer & Footers */
.trust-layer {
    background-color: #f3f4f6;
    border-top: 1px solid var(--border-color);
    padding: 40px 20px;
}
.trust-container {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.trust-container a {
    text-decoration: underline;
}

footer {
    background-color: #111;
    color: #ccc;
    padding: 40px 20px;
}
.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    font-size: 0.9rem;
}
.footer-links {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-links a {
    color: #aaa;
}
.footer-links a:hover {
    color: #fff;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: #fff;
    padding: 20px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    z-index: 100;
    display: none;
}
.cookie-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-text {
    flex: 1;
    font-size: 0.95rem;
}
.cookie-text a {
    color: var(--accent-color);
    text-decoration: underline;
}
.cookie-buttons {
    display: flex;
    gap: 10px;
}
.btn-cookie {
    padding: 8px 15px;
    border-radius: 4px;
    border: none;
    font-weight: bold;
    cursor: pointer;
}
.btn-cookie-accept {
    background-color: var(--accent-color);
    color: var(--primary-color);
}
.btn-cookie-decline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

/* Custom design pattern overlay */
.wave-pattern {
    position: relative;
    background-image: radial-gradient(var(--secondary-color) 0.5px, transparent 0.5px), radial-gradient(var(--secondary-color) 0.5px, #f9f6f0 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero, .features {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .burger {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        background-color: var(--card-bg);
        width: 100%;
        height: calc(100vh - 70px);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: 0.3s;
    }
    .nav-links.active {
        right: 0;
    }
    .price-card.popular {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}