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

.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5530;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

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

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    background: #ecf0f1;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-weight: 500;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-left {
    flex: 1;
    padding: 2rem;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-left p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.hero-right {
    flex: 1;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: #2c5530;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #1e3d21;
}

.intro-section {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

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

.intro-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.intro-section p {
    font-size: 1.15rem;
    color: #5a6c7d;
    text-align: center;
}

.services-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-row {
    display: flex;
    margin-bottom: 5rem;
    gap: 3rem;
    align-items: center;
}

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

.service-image {
    flex: 1;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-content {
    flex: 1;
    padding: 2rem;
}

.service-content h3 {
    font-size: 2rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5530;
    margin: 1.5rem 0;
}

.btn-select-service {
    background: #2c5530;
    color: #ffffff;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #1e3d21;
}

.form-section {
    background: linear-gradient(135deg, #2c5530 0%, #1e3d21 100%);
    padding: 5rem 2rem;
}

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

.form-container h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.form-container > p {
    color: rgba(255,255,255,0.9);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background: #ffffff;
}

.contact-form textarea {
    resize: vertical;
}

.btn-submit {
    background: #ffffff;
    color: #2c5530;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #ecf0f1;
}

.trust-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.trust-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
}

.trust-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
}

.trust-item h4 {
    font-size: 1.5rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.trust-item p {
    color: #5a6c7d;
    font-size: 1.05rem;
}

.footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 10000;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie,
.btn-cookie-outline {
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
    font-size: 0.95rem;
}

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

.btn-cookie:hover {
    background: #1e3d21;
}

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

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

.page-header {
    background: linear-gradient(135deg, #2c5530 0%, #1e3d21 100%);
    padding: 4rem 2rem;
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    gap: 3rem;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.about-image {
    flex: 1;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-section {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.values-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.value-card h3 {
    font-size: 1.5rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.value-card p {
    color: #5a6c7d;
    font-size: 1.05rem;
}

.process-section {
    padding: 5rem 2rem;
}

.process-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
}

.process-step {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #ecf0f1;
}

.process-step:last-child {
    border-bottom: none;
}

.process-step h3 {
    font-size: 1.8rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.process-step p {
    font-size: 1.1rem;
    color: #5a6c7d;
}

.cta-section {
    background: #f8f9fa;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: #2c5530;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #1e3d21;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.service-detail-content h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.service-detail-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-detail-content li {
    color: #5a6c7d;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.price-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c5530;
    margin: 1.5rem 0;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

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

.contact-info h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h4 {
    font-size: 1.5rem;
    color: #2c5530;
    margin-bottom: 0.8rem;
}

.contact-detail p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.map-section {
    background: #f8f9fa;
    padding: 5rem 2rem;
    text-align: center;
}

.map-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.map-section p {
    font-size: 1.1rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
}

.thanks-container {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    font-size: 5rem;
    color: #2c5530;
    margin-bottom: 1.5rem;
    width: 100px;
    height: 100px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
}

#service-confirmation {
    font-weight: 600;
    color: #2c5530;
}

.legal-content {
    padding: 5rem 2rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #2c5530;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: #2c5530;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    color: #5a6c7d;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

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

.legal-content a:hover {
    color: #1e3d21;
}

.legal-content em {
    color: #7f8c8d;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .service-row,
    .service-row-reverse {
        flex-direction: column;
    }

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

    .service-detail-card,
    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

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

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}