* {
    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;
}

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

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px 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;
    height: 70px;
}

.brand {
    font-size: 22px;
    font-weight: 600;
    color: #2d6a4f;
}

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

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

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

.hero-section {
    height: 580px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    text-align: center;
    color: #ffffff;
    padding: 40px 20px;
    background: rgba(0,0,0,0.45);
    max-width: 800px;
    border-radius: 4px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    font-weight: 400;
}

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

.content-wrapper.narrow {
    max-width: 800px;
}

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

.intro-section {
    padding: 90px 20px;
}

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

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

.vision-section {
    padding: 80px 20px;
}

.alt-bg {
    background: #f8f9fa;
}

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

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.split-text p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #495057;
}

.split-image {
    flex: 1;
    height: 420px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

.services-preview {
    padding: 90px 20px;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e9ecef;
}

.service-card h4 {
    font-size: 20px;
    margin: 20px 20px 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    margin: 0 20px 16px;
    color: #6c757d;
}

.service-card .price {
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: #2d6a4f;
    margin: 0 20px 20px;
}

.select-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px 24px;
    background: #2d6a4f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.contact-form-section {
    padding: 90px 20px;
}

.contact-form-section h2 {
    font-size: 38px;
    margin-bottom: 16px;
    text-align: center;
    color: #1a1a1a;
}

.contact-form-section > .content-wrapper > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 17px;
    color: #6c757d;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

.btn-primary {
    padding: 14px 32px;
    background: #2d6a4f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #1b4332;
}

.btn-secondary {
    padding: 14px 32px;
    background: #ffffff;
    color: #2d6a4f;
    border: 2px solid #2d6a4f;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

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

.trust-section {
    padding: 80px 20px;
}

.trust-section h3 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.testimonials {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    background: #ffffff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #495057;
    font-style: italic;
}

.testimonial .author {
    font-size: 14px;
    color: #6c757d;
    font-style: normal;
}

.disclaimer-section {
    padding: 60px 20px;
    background: #fff3cd;
}

.disclaimer-text {
    font-size: 14px;
    color: #856404;
    line-height: 1.7;
}

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    color: #adb5bd;
}

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

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

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

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

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

.footer-bottom p {
    font-size: 13px;
    color: #6c757d;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    color: #495057;
}

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

.btn-accept {
    padding: 10px 24px;
    background: #2d6a4f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-accept:hover {
    background: #1b4332;
}

.btn-reject {
    padding: 10px 24px;
    background: #6c757d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-reject:hover {
    background: #495057;
}

.page-header {
    height: 320px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-overlay {
    text-align: center;
    color: #ffffff;
    padding: 30px;
    background: rgba(0,0,0,0.5);
    border-radius: 4px;
}

.header-overlay h1 {
    font-size: 48px;
    font-weight: 700;
}

.about-content {
    padding: 80px 20px;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.about-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #495057;
}

.team-section {
    padding: 80px 20px;
}

.team-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

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

.team-member {
    flex: 1;
    text-align: center;
}

.member-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: #e9ecef;
    margin: 0 auto 20px;
}

.team-member h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.team-member .role {
    font-size: 14px;
    color: #2d6a4f;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 15px;
    color: #6c757d;
}

.values-section {
    padding: 80px 20px;
}

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

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
}

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

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

.cta-section {
    padding: 80px 20px;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.cta-section p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #6c757d;
}

.services-detailed {
    padding: 60px 20px;
}

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

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

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #495057;
}

.service-features {
    margin: 30px 0;
}

.service-features h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features ul li {
    padding-left: 24px;
    margin-bottom: 8px;
    position: relative;
    font-size: 15px;
    color: #495057;
}

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

.service-pricing {
    margin: 24px 0;
}

.price-label {
    font-size: 15px;
    color: #6c757d;
    margin-right: 8px;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #2d6a4f;
}

.service-detail-image {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #e9ecef;
    border-radius: 4px;
}

.contact-page-content {
    padding: 60px 20px;
}

.contact-layout {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

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

.info-block {
    margin-bottom: 30px;
}

.info-block h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2d6a4f;
}

.info-block p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    background-color: #e9ecef;
    border-radius: 4px;
    position: relative;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255,255,255,0.95);
    padding: 16px 24px;
    border-radius: 4px;
}

.map-overlay p {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.additional-info {
    padding: 80px 20px;
}

.additional-info h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: #2d6a4f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.thanks-section h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #6c757d;
}

.thanks-details {
    margin: 30px 0;
}

.selected-service-info {
    font-size: 18px;
    color: #2d6a4f;
    font-weight: 600;
}

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

.next-steps {
    padding: 80px 20px;
}

.next-steps h2 {
    font-size: 34px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.steps-list {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 24px;
    margin-bottom: 30px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #2d6a4f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step-content p {
    font-size: 16px;
    color: #6c757d;
}

.legal-page {
    padding: 60px 20px 80px;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.update-date {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

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

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

.legal-page ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #495057;
}

.legal-page a {
    color: #2d6a4f;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #1b4332;
}

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

.gdpr-table thead {
    background: #f8f9fa;
}

.gdpr-table th {
    padding: 12px 16px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    border: 1px solid #dee2e6;
}

.gdpr-table td {
    padding: 12px 16px;
    font-size: 15px;
    color: #495057;
    border: 1px solid #dee2e6;
}

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

    .split-layout,
    .testimonials,
    .service-detail,
    .contact-layout,
    .team-grid {
        flex-direction: column;
    }

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

    .split-image,
    .service-detail-image {
        height: 280px;
    }

    .nav-links {
        gap: 20px;
    }

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

    .cookie-content {
        flex-direction: column;
    }

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