* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #27ae60;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

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

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

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

.container-split.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-right {
    display: flex;
    gap: 30px;
}

.nav-right a {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-right a:hover,
.nav-right a.active {
    background: var(--bg-light);
    color: var(--secondary-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    padding: 80px 60px;
    background: var(--bg-light);
}

.hero-text-container {
    max-width: 550px;
}

.hero-text-container h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-right {
    overflow: hidden;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

section {
    padding: 80px 0;
}

.problem-section {
    background: var(--bg-white);
}

.section-image {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.split-content h2 {
    font-size: 2.25rem;
    margin-bottom: 24px;
    color: var(--primary-color);
    line-height: 1.3;
}

.split-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.insight-block {
    background: var(--primary-color);
    color: white;
    padding: 100px 0;
}

.insight-content h3 {
    font-size: 2rem;
    margin-bottom: 28px;
    color: white;
}

.insight-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.services-preview {
    background: var(--bg-light);
}

.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.service-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    max-width: 380px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.service-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 20px 0;
}

.testimonial-split {
    background: var(--bg-light);
}

.testimonial-text {
    display: flex;
    align-items: center;
    padding: 40px;
}

blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
    border-left: 4px solid var(--secondary-color);
    padding-left: 32px;
}

blockquote footer {
    margin-top: 20px;
    font-size: 1rem;
    font-style: normal;
    color: var(--text-light);
    font-weight: 600;
}

.testimonial-image {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.method-section {
    background: var(--bg-white);
}

.cta-inline {
    background: var(--secondary-color);
    padding: 80px 0;
}

.cta-box {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.results-section {
    background: var(--bg-light);
}

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

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

.result-item h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.result-item p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.form-section {
    background: var(--bg-white);
}

.form-info h2 {
    font-size: 2.25rem;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.form-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.final-trust {
    background: var(--bg-light);
}

.trust-content h3 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.trust-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 30px;
}

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

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: white;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    padding: 16px 32px;
    background: var(--accent-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(231, 76, 60, 0.4);
    color: white;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: white;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: var(--success-color);
    color: white;
}

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.page-hero {
    background: var(--bg-light);
    padding: 100px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.about-story,
.team-approach {
    padding: 80px 0;
}

.values-section {
    background: var(--bg-light);
    padding: 80px 0;
}

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

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

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-item p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.experience-section {
    background: var(--bg-white);
    padding: 80px 0;
}

.experience-section h2 {
    font-size: 2.25rem;
    margin-bottom: 28px;
    color: var(--primary-color);
}

.experience-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.cta-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.services-detail {
    padding: 0;
}

.service-detail-item {
    padding: 80px 0;
}

.service-detail-item.alt-bg {
    background: var(--bg-light);
}

.service-detail-image {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.service-detail-text h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 16px 0 24px;
}

.service-detail-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-detail-text h4 {
    font-size: 1.3rem;
    margin: 28px 0 12px;
    color: var(--primary-color);
}

.service-detail-text ul {
    list-style-position: inside;
    margin-bottom: 24px;
    color: var(--text-light);
}

.service-detail-text ul li {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.process-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.process-step {
    flex: 1 1 calc(50% - 40px);
    min-width: 280px;
    display: flex;
    gap: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.process-step p {
    color: var(--text-light);
}

.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-color);
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.modal-content p {
    margin-bottom: 16px;
    color: var(--text-light);
}

.modal-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.contact-content {
    padding: 80px 0;
}

.contact-info h2 {
    font-size: 2.25rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-item a {
    color: var(--secondary-color);
}

.contact-item .note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 8px;
}

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-caption {
    margin-top: 12px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-cta {
    background: var(--bg-light);
    padding: 80px 0;
}

.legal-page {
    padding: 80px 0;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.legal-content p {
    margin-bottom: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    margin-left: 20px;
}

.legal-content li {
    margin-bottom: 8px;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-content strong {
    color: var(--text-color);
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.gdpr-table th,
.cookie-table th {
    background: var(--bg-light);
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: var(--primary-color);
}

.gdpr-table td,
.cookie-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

#resetCookieConsent {
    margin-top: 20px;
}

.thanks-hero {
    background: var(--bg-light);
    padding: 100px 0;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 32px;
}

.thanks-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-lead {
    font-size: 1.3rem;
    color: var(--text-light);
}

.thanks-content {
    padding: 80px 0;
}

.thanks-info-box {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 8px;
    margin-bottom: 60px;
}

.thanks-info-box h2 {
    font-size: 2rem;
    margin-bottom: 32px;
    color: var(--primary-color);
    text-align: center;
}

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.thanks-step {
    display: flex;
    gap: 24px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.step-text p {
    color: var(--text-light);
}

.thanks-service-info {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 60px;
    text-align: center;
}

.thanks-service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.thanks-service-info p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.thanks-explore {
    text-align: center;
}

.thanks-explore h3 {
    font-size: 2rem;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.thanks-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-link {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    transition: all 0.3s ease;
}

.thanks-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.thanks-link h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.thanks-link p {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .container-split {
        flex-direction: column;
        gap: 40px;
    }

    .container-split.reverse {
        flex-direction: column;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

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

    .nav-split {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-right {
        gap: 15px;
    }

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

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .result-item {
        flex: 1 1 100%;
    }

    .value-item {
        flex: 1 1 100%;
    }

    .process-step {
        flex: 1 1 100%;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    .modal-content {
        margin: 20% 20px;
        padding: 30px 20px;
    }

    .modal-buttons {
        flex-direction: column;
    }

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