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

:root {
    --primary: #2c5f2d;
    --secondary: #ff6b35;
    --accent: #f7b801;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --border: #dee2e6;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: #ffffff;
}

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

.narrow {
    max-width: 780px;
    margin: 0 auto;
}

header {
    background: var(--dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 1.6em;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
}

.ad-disclosure {
    font-size: 0.8em;
    color: var(--light);
    padding: 5px 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

nav a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s;
}

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

.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('') center/cover;
    background-color: #3a3a3a;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 60px 20px;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3em;
    margin-bottom: 35px;
    max-width: 700px;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--secondary);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.btn:hover {
    background: #e55a2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,107,53,0.4);
}

.btn-alt {
    background: var(--primary);
}

.btn-alt:hover {
    background: #1e4620;
}

section {
    padding: 80px 20px;
}

.bg-light {
    background: var(--light);
}

.bg-dark {
    background: var(--dark);
    color: white;
}

.story-section {
    padding: 90px 20px;
}

.story-section h2 {
    font-size: 2.3em;
    margin-bottom: 30px;
    text-align: center;
}

.story-section p {
    font-size: 1.15em;
    margin-bottom: 25px;
    line-height: 1.8;
}

.story-image {
    width: 100%;
    max-width: 650px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin: 40px auto;
    display: block;
    background-color: #e9ecef;
}

.split-section {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.split-section > * {
    flex: 1;
    min-width: 300px;
}

.split-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e9ecef;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.service-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-card p {
    margin-bottom: 20px;
    color: var(--gray);
}

.price {
    font-size: 2em;
    font-weight: 700;
    color: var(--secondary);
    margin: 20px 0;
}

.cta-block {
    background: var(--primary);
    color: white;
    padding: 70px 20px;
    text-align: center;
    margin: 60px 0;
}

.cta-block h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
}

.cta-block p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.form-section {
    background: var(--light);
    padding: 80px 20px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 35px;
    font-size: 2em;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-size: 1em;
    font-family: inherit;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.testimonials {
    padding: 80px 20px;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.3em;
    margin-bottom: 50px;
}

.testimonial-grid {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 30px;
    border-left: 4px solid var(--secondary);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.features-list {
    max-width: 700px;
    margin: 40px auto;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.3em;
    margin-bottom: 8px;
}

.footer {
    background: var(--dark);
    color: var(--light);
    padding: 50px 20px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9em;
}

.disclaimer {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 20px;
    margin: 40px 0;
    border-radius: 5px;
    font-size: 0.95em;
    line-height: 1.6;
}

.references {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--border);
}

.references h3 {
    margin-bottom: 20px;
}

.references ol {
    padding-left: 25px;
}

.references li {
    margin-bottom: 12px;
}

.references a {
    color: var(--primary);
    word-break: break-all;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: white;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    display: block;
}

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

.cookie-text {
    flex: 1;
    min-width: 250px;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.95em;
    font-weight: 600;
    transition: all 0.3s;
}

.cookie-accept {
    background: var(--secondary);
    color: white;
}

.cookie-accept:hover {
    background: #e55a2a;
}

.cookie-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-reject:hover {
    background: rgba(255,255,255,0.1);
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.email-display {
    color: var(--gray);
    font-size: 1.1em;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 2.5em;
    color: var(--primary);
    margin-bottom: 20px;
}

.thanks-icon {
    font-size: 4em;
    color: var(--secondary);
    margin-bottom: 20px;
}

.legal-page {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: var(--primary);
}

.legal-page h2 {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--dark);
}

.legal-page h3 {
    font-size: 1.3em;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-page ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-page li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1.1em;
    }

    .split-section {
        flex-direction: column;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
