* {
    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: #333;
    background: #ffffff;
}

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

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

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

.hero-section {
    background: #f5f8f5;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-content {
    max-width: 700px;
    text-align: center;
}

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

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

.hero-image {
    max-width: 1200px;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cta-button {
    display: inline-block;
    background: #2c5f2d;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: background 0.3s, transform 0.2s;
}

.cta-button:hover {
    background: #1f4520;
    transform: translateY(-2px);
}

.secondary-button {
    display: inline-block;
    background: #ffffff;
    color: #2c5f2d;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid #2c5f2d;
    transition: all 0.3s;
}

.secondary-button:hover {
    background: #2c5f2d;
    color: #ffffff;
}

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

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

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a3a1a;
}

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

.benefits-section {
    padding: 100px 20px;
    background: #fafafa;
    text-align: center;
}

.benefits-section h2 {
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a3a1a;
}

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

.benefit-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

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

.benefit-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px;
    color: #1a3a1a;
}

.benefit-card p {
    padding: 0 20px 25px;
    color: #666;
    font-size: 16px;
}

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

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.services-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a3a1a;
}

.services-intro p {
    font-size: 18px;
    color: #555;
}

.services-list {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-item {
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    min-width: 450px;
}

.service-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e8f5e9;
}

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a3a1a;
}

.service-details p {
    font-size: 17px;
    color: #555;
    margin-bottom: 15px;
}

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

.services-cta {
    text-align: center;
    margin-top: 60px;
}

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

.process-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 70px;
    color: #1a3a1a;
}

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

.step {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #2c5f2d;
    opacity: 0.3;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a3a1a;
}

.step p {
    font-size: 16px;
    color: #666;
}

.form-section {
    padding: 100px 20px;
    background: #2c5f2d;
    color: #ffffff;
}

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
}

.form-container > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 17px;
    opacity: 0.9;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 16px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    font-size: 16px;
    background: rgba(255,255,255,0.95);
    color: #333;
}

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

.submit-button {
    width: 100%;
    padding: 16px;
    background: #ffffff;
    color: #2c5f2d;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

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

.trust-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a3a1a;
}

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

.trust-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

.main-footer {
    background: #1a3a1a;
    color: #ffffff;
    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: 250px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

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

.footer-section a:hover {
    opacity: 1;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a3a1a;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 15px;
}

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

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

.cookie-button.accept {
    background: #4CAF50;
    color: #ffffff;
}

.cookie-button.accept:hover {
    background: #45a049;
}

.cookie-button.reject {
    background: #ffffff;
    color: #1a3a1a;
}

.cookie-button.reject:hover {
    background: #f0f0f0;
}

.page-header {
    padding: 80px 20px;
    background: #f5f8f5;
    text-align: center;
}

.page-header h1 {
    font-size: 46px;
    margin-bottom: 15px;
    color: #1a3a1a;
}

.page-header p {
    font-size: 20px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-width: 450px;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e8f5e9;
}

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a3a1a;
}

.service-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 18px;
}

.service-features ul {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

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

.price-display {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f2d;
    margin-top: 25px;
}

.cta-section {
    padding: 100px 20px;
    background: #f5f8f5;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1a3a1a;
}

.cta-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
}

.about-intro {
    padding: 80px 20px;
    background: #f5f8f5;
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    flex: 1;
}

.about-content h1 {
    font-size: 46px;
    margin-bottom: 20px;
    color: #1a3a1a;
}

.about-content p {
    font-size: 18px;
    color: #555;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e8f5e9;
}

.mission-section {
    padding: 100px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.mission-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a3a1a;
}

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

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

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a3a1a;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c5f2d;
}

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

.expertise-section {
    padding: 100px 20px;
    background: #ffffff;
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-content {
    flex: 1;
}

.expertise-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a3a1a;
}

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

.expertise-image {
    flex: 1;
}

.expertise-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e8f5e9;
}

.approach-section {
    padding: 100px 20px;
    max-width: 900px;
    margin: 0 auto;
    background: #f5f8f5;
}

.approach-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a3a1a;
}

.approach-section p {
    font-size: 17px;
    color: #555;
    margin-bottom: 18px;
}

.region-section {
    padding: 100px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.region-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a3a1a;
}

.region-section p {
    font-size: 17px;
    color: #555;
    margin-bottom: 40px;
}

.region-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e8f5e9;
}

.contact-header {
    padding: 80px 20px;
    background: #f5f8f5;
    text-align: center;
}

.contact-header h1 {
    font-size: 46px;
    margin-bottom: 15px;
    color: #1a3a1a;
}

.contact-header p {
    font-size: 20px;
    color: #555;
}

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

.contact-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    background: #f5f8f5;
    padding: 40px;
    border-radius: 12px;
}

.contact-card h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

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

.email-display {
    font-weight: 600;
    color: #2c5f2d;
    font-size: 18px;
}

.email-note {
    margin-top: 10px;
    font-size: 14px;
}

.contact-approach {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
    background: #fafafa;
}

.contact-approach h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a3a1a;
}

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

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

.map-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a3a1a;
}

.map-section p {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
}

.map-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e8f5e9;
}

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

.contact-faq h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a3a1a;
}

.faq-item {
    margin-bottom: 35px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c5f2d;
}

.faq-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.thanks-section {
    padding: 100px 20px;
    min-height: 60vh;
}

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

.thanks-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a3a1a;
}

.thanks-main-text {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.selected-service-info {
    background: #f5f8f5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.selected-service-info p {
    font-size: 16px;
    color: #555;
}

#selected-service-display {
    color: #2c5f2d;
    font-weight: 600;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 40px auto;
    background: #fafafa;
    padding: 30px;
    border-radius: 12px;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a3a1a;
    text-align: center;
}

.next-steps ol {
    padding-left: 25px;
}

.next-steps li {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
}

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

.info-section {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
    background: #f5f8f5;
}

.info-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a3a1a;
}

.info-section p {
    font-size: 17px;
    color: #555;
    margin-bottom: 18px;
}

.info-section ul {
    margin: 25px 0;
    padding-left: 25px;
}

.info-section li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a3a1a;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #1a3a1a;
}

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

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

.legal-page li {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-page em {
    color: #777;
}

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

    .nav-menu {
        gap: 15px;
    }

    .service-item,
    .service-detail-card,
    .about-intro,
    .expertise-section {
        flex-direction: column;
    }

    .service-visual,
    .service-image {
        min-width: 100%;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

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

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

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

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