:root {
    --primary-color: #163224;
    --primary-light: #224d37;
    --accent-color: #C5A059;
    --accent-hover: #b38f4b;
    --bg-light: #FAFAFA;
    --bg-dark: #111;
    --text-color: #2D3748;
    --text-muted: #718096;
    --white: #FFFFFF;
    --border-color: #E2E8F0;
    --font-heading: 'Lora', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px;
    z-index: 100;
    transition: top 0.3s;
}

.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;
}

header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 1rem;
}

.btn-cta {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: var(--accent-color);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

main {
    min-height: calc(100vh - 150px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(22, 50, 36, 0.95), rgba(34, 77, 55, 0.9)), url('images/hero.jpg') no-repeat center center/cover;
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    color: var(--accent-color);
    font-size: 3rem;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.hero-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--primary-color) !important;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-accent:hover {
    background-color: var(--white);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(136% + 1.3px);
    height: 48px;
}

.hero-wave .shape-fill {
    fill: var(--bg-light);
}

/* Stats Section */
.stats-section {
    max-width: 1200px;
    margin: -50px auto 50px auto;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    position: relative;
    z-index: 10;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Standard Section */
.section-padding {
    padding: 80px 20px;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid var(--accent-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    text-align: center;
}

.process-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 10px;
}

.process-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

/* Feature/Asymmetric Section */
.asymmetric-section {
    display: flex;
    align-items: center;
    gap: 50px;
}

.asymmetric-img, .asymmetric-text {
    flex: 1;
}

.asymmetric-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.asymmetric-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.bullet-list {
    list-style: none;
    margin-top: 20px;
}

.bullet-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1.1rem;
}

.bullet-list li i {
    color: var(--accent-color);
    margin-top: 5px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-body h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-body p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card.popular {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
    z-index: 5;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.15);
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.price-value {
    font-size: 3rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin: 20px 0;
}

.pricing-features {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--accent-color);
}

.btn-pricing {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 12px;
    border-radius: 5px;
    font-weight: bold;
    display: block;
    margin-top: auto;
    transition: background-color 0.3s;
}

.pricing-card.popular .btn-pricing {
    background-color: var(--accent-color);
    color: var(--primary-color) !important;
}

.pricing-card.popular .btn-pricing:hover {
    background-color: var(--primary-color);
    color: var(--white) !important;
}

/* Contact/Form Section */
.form-section {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    font-weight: normal;
    font-size: 0.9rem;
}

.btn-submit {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background: var(--accent-color);
}

/* Trust Layer */
.trust-layer {
    background: #E2E8F0;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.trust-layer h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.trust-details {
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trust-details a {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px 20px;
    font-size: 0.9rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 15px;
    list-style: none;
}

.footer-links a {
    color: #CBD5E0;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-copy {
    color: #A0AEC0;
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 25px;
    z-index: 10000;
    border-left: 5px solid var(--accent-color);
}

#cookie-banner p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background: var(--primary-color);
    color: var(--white);
}

.btn-reject {
    background: var(--border-color);
    color: var(--text-color);
}

/* General Layout Elements */
.legal-page-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.legal-page-container h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 15px;
}

.legal-page-container h2 {
    font-size: 1.7rem;
    margin: 30px 0 15px 0;
}

.legal-page-container p, .legal-page-container ul {
    margin-bottom: 15px;
    color: #4A5568;
}

.legal-page-container ul {
    padding-left: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
    }
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border-color);
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    }
    nav ul.active {
        display: flex;
    }
    .burger-menu {
        display: block;
    }
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .process-grid, .services-grid {
        grid-template-columns: 1fr;
    }
    .asymmetric-section {
        flex-direction: column;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

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