* {
    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.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.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: 22px;
    font-weight: 700;
    color: #16a34a;
}

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

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

.nav-links a:hover {
    color: #16a34a;
}

.hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
}

.hero-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #d1d5db;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.85) 0%, rgba(21, 128, 61, 0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
}

.hero-overlay h1 {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    max-width: 900px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    color: #f0fdf4;
    max-width: 700px;
}

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

.intro-section {
    padding: 80px 20px;
    background-color: #f9fafb;
}

.intro-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 30px;
    text-align: center;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #d1d5db;
}

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

.service-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #16a34a;
    margin-bottom: 20px;
}

.select-service {
    background-color: #16a34a;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.select-service:hover {
    background-color: #15803d;
    transform: scale(1.02);
}

.select-service:active {
    transform: scale(0.98);
}

.contact-form-section {
    padding: 90px 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 18px;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #16a34a;
}

.form-group input[readonly] {
    background-color: #f3f4f6;
    color: #6b7280;
}

.submit-btn {
    width: 100%;
    background-color: #16a34a;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background-color: #15803d;
    transform: scale(1.01);
}

.submit-btn:active {
    transform: scale(0.99);
}

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

.trust-section h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 60px;
    text-align: center;
}

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

.trust-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.trust-item h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
}

.disclaimer-section {
    padding: 50px 20px;
    background-color: #fef3c7;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: #78350f;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

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

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: #d1d5db;
}

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

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

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

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

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

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
}

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

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

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

.cookie-content p {
    color: #f9fafb;
    font-size: 14px;
    flex: 1;
    min-width: 250px;
}

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

.cookie-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.cookie-btn.accept {
    background-color: #16a34a;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #15803d;
    transform: scale(1.02);
}

.cookie-btn.reject {
    background-color: #6b7280;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #4b5563;
    transform: scale(1.02);
}

.page-hero {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

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

.page-hero p {
    font-size: 20px;
    color: #f0fdf4;
}

.about-content {
    padding: 90px 20px;
    background-color: #ffffff;
}

.about-content .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

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

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    background-color: #d1d5db;
}

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

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

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

.value-item {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.value-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #16a34a;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
}

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

.expertise-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 30px;
    text-align: center;
}

.expertise-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    max-width: 900px;
    margin: 0 auto 25px;
    text-align: center;
}

.services-detailed {
    padding: 70px 20px;
    background-color: #ffffff;
}

.service-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    background-color: #d1d5db;
}

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #16a34a;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 700;
}

.cta-link {
    display: inline-block;
    background-color: #16a34a;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-link:hover {
    background-color: #15803d;
    transform: scale(1.02);
}

.process-section {
    padding: 90px 20px;
    background-color: #f9fafb;
}

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

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.process-step {
    flex: 1;
    min-width: 220px;
    max-width: 260px;
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #d1fae5;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
}

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

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-details h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 40px;
}

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

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #16a34a;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
}

.no-link {
    color: inherit;
    text-decoration: none;
    cursor: text;
}

.contact-image {
    flex: 1;
    min-width: 300px;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    background-color: #d1d5db;
}

.map-section {
    padding: 70px 20px;
    background-color: #f9fafb;
}

.map-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    text-align: center;
}

.map-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

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

.legal-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 25px;
    margin-top: 40px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 15px;
    margin-top: 30px;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 10px;
}

.thanks-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #dcfce7 0%, #f0fdf4 100%);
    min-height: 500px;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.thanks-content h1 {
    font-size: 40px;
    font-weight: 800;
    color: #16a34a;
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 30px;
}

.thanks-info {
    background-color: #f0fdf4;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #16a34a;
}

.thanks-info p {
    font-size: 16px;
    color: #166534;
    font-weight: 600;
    margin-bottom: 0;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary {
    background-color: #16a34a;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #15803d;
    transform: scale(1.02);
}

.btn-secondary {
    background-color: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-secondary:hover {
    background-color: #e5e7eb;
    transform: scale(1.02);
}

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

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

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

    .hero-overlay p {
        font-size: 17px;
    }

    .service-card {
        width: 100%;
        min-width: 100%;
    }

    .about-content .content-wrapper,
    .service-detail {
        flex-direction: column;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

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