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

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    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;
    font-size: 14px;
}

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

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

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

.btn-accept:hover {
    background: #234a30;
}

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

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

.header {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d5f3f;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

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

.nav a:hover {
    color: #2d5f3f;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.hero-section {
    position: relative;
    background: #f8f9fa;
}

.hero-image-container {
    position: relative;
    min-height: 500px;
}

.hero-image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    display: flex;
    align-items: center;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 700px;
}

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

.intro-section {
    padding: 80px 0;
    background: #ffffff;
}

.intro-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2d5f3f;
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.services-preview {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 320px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    background: #e5e5e5;
}

.card-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.card-content {
    padding: 24px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d5f3f;
}

.card-content p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #4a5568;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 16px;
}

.btn-select {
    width: 100%;
    padding: 12px 24px;
    background: #2d5f3f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select:hover {
    background: #234a30;
}

.process-section {
    padding: 80px 0;
    background: #2c3e50;
    color: #ffffff;
}

.process-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

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

.process-block {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 16px;
}

.process-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.process-block p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
}

.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #2d5f3f 0%, #1a3d26 100%);
    color: #ffffff;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
}

.form-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.contact-form h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    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: #2d5f3f;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-label a {
    color: #2d5f3f;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: #2d5f3f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #234a30;
}

.info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.info-block {
    flex: 1;
    min-width: 280px;
}

.info-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2d5f3f;
}

.info-block p {
    font-size: 16px;
    color: #4a5568;
}

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

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #2d5f3f;
}

.footer-column p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

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

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

.footer-column ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom .disclaimer {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.page-hero {
    background: linear-gradient(135deg, #2d5f3f 0%, #1a3d26 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.about-content {
    padding: 80px 0;
    background: #ffffff;
}

.content-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2d5f3f;
}

.content-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.content-image {
    flex: 1;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.values-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
}

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

.value-item p {
    font-size: 16px;
    color: #4a5568;
}

.experience-section {
    padding: 0;
    background: #2c3e50;
}

.experience-content {
    position: relative;
}

.experience-content img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    opacity: 0.3;
}

.experience-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.experience-text h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.experience-text p {
    font-size: 18px;
    line-height: 1.8;
}

.approach-section {
    padding: 80px 0;
    background: #ffffff;
}

.approach-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-lead {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.approach-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.approach-block {
    flex: 1;
    min-width: 280px;
}

.approach-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2d5f3f;
}

.approach-block p {
    font-size: 16px;
    color: #4a5568;
}

.commitment-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.commitment-box {
    background: #ffffff;
    padding: 60px;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.commitment-box h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2d5f3f;
    text-align: center;
}

.commitment-box p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.services-detailed {
    padding: 80px 0;
    background: #ffffff;
}

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

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

.detail-content {
    flex: 1;
}

.detail-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2d5f3f;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 20px;
}

.detail-content p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #4a5568;
}

.detail-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.detail-content ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.detail-content ul li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #4a5568;
}

.detail-image {
    flex: 1;
}

.detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.btn-cta {
    padding: 14px 32px;
    background: #2d5f3f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-cta:hover {
    background: #234a30;
}

.pricing-note {
    padding: 60px 0;
    background: #f8f9fa;
}

.pricing-note h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
    text-align: center;
}

.pricing-note p {
    font-size: 16px;
    color: #4a5568;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2d5f3f;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 16px;
    color: #4a5568;
}

.contact-map {
    flex: 1;
    background: #e5e5e5;
}

.contact-map img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.info-additional {
    padding: 80px 0;
    background: #f8f9fa;
}

.info-additional h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.info-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.info-box {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.info-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d5f3f;
}

.info-box p {
    font-size: 16px;
    color: #4a5568;
}

.thanks-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2d5f3f;
}

.thanks-lead {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 40px;
}

.service-confirmation {
    background: #f0f7f4;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 40px;
    font-size: 16px;
    color: #2d5f3f;
}

.next-steps {
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #2c3e50;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

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

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 12px;
}

.step h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step p {
    font-size: 14px;
    color: #4a5568;
}

.thanks-note {
    background: #fff9e6;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-note p {
    font-size: 14px;
    color: #856404;
    margin: 0;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #2d5f3f;
    color: #ffffff;
}

.btn-primary:hover {
    background: #234a30;
}

.btn-secondary {
    background: transparent;
    color: #2d5f3f;
    border: 2px solid #2d5f3f;
}

.btn-secondary:hover {
    background: #2d5f3f;
    color: #ffffff;
}

.legal-page {
    padding: 60px 0;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.last-update {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2d5f3f;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

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

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

.legal-content ul li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #4a5568;
}

.legal-content strong {
    color: #2c3e50;
}

.gdpr-table,
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.gdpr-table th,
.cookie-table th {
    background: #f8f9fa;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 2px solid #ddd;
}

.gdpr-table td,
.cookie-table td {
    padding: 12px;
    border-bottom: 1px solid #e5e5e5;
    color: #4a5568;
}

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

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

    .intro-grid,
    .content-grid,
    .contact-layout,
    .service-detail {
        flex-direction: column;
    }

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

    .services-cards {
        justify-content: center;
    }

    .service-card {
        width: 100%;
        max-width: 400px;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero-overlay h1 {
        font-size: 28px;
    }

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

    h2 {
        font-size: 28px;
    }

    .commitment-box {
        padding: 30px 20px;
    }
}