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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f4f4f4;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background-color: #2d5a3d;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}

.hero-section {
    display: flex;
    align-items: center;
    min-height: 600px;
    background: linear-gradient(135deg, #2d5a3d 0%, #4a7c59 100%);
    padding: 80px 20px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.hero-content > div:first-child {
    flex: 1;
    max-width: 550px;
}

.hero-section h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-section p {
    font-size: 19px;
    color: #e8f5e9;
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
    max-width: 600px;
    background-color: #1f4430;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    object-fit: cover;
}

.cta-button {
    display: inline-block;
    background-color: #f9a825;
    color: #1a1a1a;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #ffb74d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 168, 37, 0.4);
}

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

.cta-button.secondary:hover {
    background-color: #2d5a3d;
    color: #ffffff;
    transform: translateY(-2px);
}

.intro-section {
    padding: 90px 20px;
    background-color: #fafafa;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.intro-section h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

.visual-break {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
}

.visual-break img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    opacity: 0.7;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 700px;
    padding: 40px;
    background-color: rgba(45, 90, 61, 0.9);
    border-radius: 8px;
}

.overlay-text h3 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.overlay-text p {
    font-size: 19px;
    line-height: 1.5;
}

.services-preview {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    color: #555;
    margin: 0 25px 20px;
    line-height: 1.6;
}

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #2d5a3d;
    margin: 0 25px 15px;
    display: block;
}

.service-card .link-arrow {
    color: #2d5a3d;
    text-decoration: none;
    font-weight: 600;
    margin: 0 25px 25px;
    display: inline-block;
    transition: color 0.3s ease;
}

.service-card .link-arrow:hover {
    color: #4a7c59;
}

.trust-section {
    padding: 90px 20px;
    background-color: #e8f5e9;
}

.content-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.text-block p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #444;
    line-height: 1.7;
}

.image-block {
    flex: 1;
    background-color: #d0e5d6;
}

.image-block img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.cta-mid {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #2d5a3d 0%, #1f4430 100%);
    color: #ffffff;
}

.cta-mid h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-mid p {
    font-size: 19px;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.form-section {
    padding: 100px 20px;
    background-color: #fafafa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-container > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #555;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: #4a7c59;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 61, 0.3);
}

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

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #f9a825;
    font-weight: 700;
}

.footer-column p {
    font-size: 15px;
    color: #bbb;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #f9a825;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-content a {
    color: #f9a825;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #2d5a3d;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #4a7c59;
}

.cookie-btn.reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #333;
}

.page-header {
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, #2d5a3d 0%, #4a7c59 100%);
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 19px;
    max-width: 700px;
    margin: 0 auto;
}

.service-detail {
    padding: 80px 20px;
    background-color: #ffffff;
}

.service-detail.alternate {
    background-color: #fafafa;
}

.service-detail .service-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #444;
    line-height: 1.7;
}

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

.feature-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
    color: #444;
}

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

.pricing-box {
    background-color: #e8f5e9;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    border-left: 4px solid #2d5a3d;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

.price-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 8px;
}

.price-note {
    display: block;
    font-size: 14px;
    color: #666;
}

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

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.cta-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #2d5a3d;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 19px;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-intro {
    padding: 80px 20px;
    background-color: #ffffff;
}

.about-intro img {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.7;
}

.values-section {
    padding: 90px 20px;
    background-color: #fafafa;
}

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

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

.value-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d5a3d;
    font-weight: 700;
}

.value-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.team-section {
    padding: 90px 20px;
    background-color: #ffffff;
}

.expertise-section {
    padding: 90px 20px;
    background-color: #e8f5e9;
}

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

.stats-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 200px;
}

.stat-number {
    display: block;
    font-size: 56px;
    font-weight: 800;
    color: #2d5a3d;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 17px;
    color: #444;
}

.process-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.step {
    background-color: #fafafa;
    padding: 35px;
    margin-bottom: 30px;
    border-radius: 8px;
    border-left: 5px solid #2d5a3d;
    position: relative;
}

.step-number {
    position: absolute;
    top: 35px;
    right: 35px;
    font-size: 48px;
    font-weight: 800;
    color: #e8f5e9;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.step p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.contact-content {
    padding: 60px 20px;
    background-color: #ffffff;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-info h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2d5a3d;
    font-weight: 700;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #444;
    line-height: 1.7;
}

.legal-section {
    padding: 60px 20px;
    background-color: #fafafa;
}

.legal-content {
    padding: 60px 20px;
    background-color: #ffffff;
}

.legal-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2d5a3d;
    font-weight: 700;
}

.legal-content h4 {
    font-size: 19px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #444;
    line-height: 1.7;
}

.legal-content ul {
    margin: 15px 0 20px 25px;
}

.legal-content li {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: #2d5a3d;
    text-decoration: underline;
}

.thanks-section {
    padding: 100px 20px;
    background-color: #fafafa;
    min-height: 500px;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2d5a3d;
    font-weight: 700;
}

.thanks-container > p {
    font-size: 19px;
    color: #666;
    margin-bottom: 50px;
}

.thanks-info {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    border: 2px solid #e8f5e9;
}

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-info p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero-section {
        min-height: auto;
        padding: 60px 20px;
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .hero-section h1 {
        font-size: 36px;
    }

    .content-split {
        flex-direction: column;
        gap: 40px;
    }

    .service-detail .service-content {
        flex-direction: column;
        gap: 40px;
    }

    .services-grid {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .values-grid {
        flex-direction: column;
    }

    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions .cta-button {
        width: 100%;
    }
}