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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #4a90e2;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-accept {
    background: #2ecc71;
    color: #fff;
}

.btn-accept:hover {
    background: #27ae60;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.main-nav {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    font-style: italic;
    padding: 4px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c5f2d;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
}

.hero-image {
    flex: 1;
    background: #e0e0e0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-primary {
    background: #2c5f2d;
    color: #fff;
}

.cta-primary:hover {
    background: #234d23;
    transform: translateY(-2px);
}

.cta-secondary {
    background: transparent;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
}

.cta-secondary:hover {
    background: #2c5f2d;
    color: #fff;
}

.split-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.split-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
}

.split-image {
    flex: 1;
    background: #e0e0e0;
}

.split-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.feature-list {
    list-style: none;
    margin: 24px 0;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

.services-grid {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.grid-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 240px;
    display: block;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    margin: 0 20px 16px;
    color: #666;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
    margin: 0 20px 20px;
}

.testimonials {
    background: #f8f9fa;
    padding: 80px 20px;
}

.testimonials h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonial-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 40px;
    border-left: 4px solid #2c5f2d;
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 20px;
    color: #333;
}

.author {
    font-weight: 600;
    color: #2c5f2d;
}

.contact-section {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    color: #1a1a1a;
}

.form-container > p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f2d;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: #2c5f2d;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #234d23;
    transform: translateY(-2px);
}

.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #fff;
}

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

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

.footer-section a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    color: #888;
    font-size: 14px;
}

.disclaimer {
    margin-top: 12px;
    font-size: 12px;
    color: #666;
}

.thanks-container {
    max-width: 800px;
    margin: 80px auto;
    padding: 60px 40px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2c5f2d;
}

.thanks-container p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #555;
}

.thanks-container .cta-primary {
    margin-top: 32px;
}

.legal-page {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
}

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #333;
}

.legal-page p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: #555;
}

.legal-page ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-page ul li {
    margin-bottom: 8px;
    color: #555;
}

@media (max-width: 768px) {
    .hero-split,
    .split-section {
        flex-direction: column;
    }

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

    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .hero-content,
    .split-content {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .cookie-content {
        flex-direction: column;
    }
}