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

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

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: #3498db;
}

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

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a252f;
}

.hero-text p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #4a5568;
}

.hero-image {
    flex: 1;
    background: #e2e8f0;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

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

.cta-secondary {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2c3e50;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #2c3e50;
    color: #ffffff;
}

.problem-section {
    padding: 80px 30px;
    background: #ffffff;
}

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

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

.problem-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a252f;
}

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

.insight-split {
    display: flex;
    background: #f8f9fa;
}

.insight-image {
    flex: 1;
    background: #e2e8f0;
    min-height: 500px;
}

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

.insight-content {
    flex: 1;
    padding: 80px 60px;
}

.insight-content h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a252f;
}

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

.link-arrow {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.link-arrow:hover {
    color: #2c3e50;
}

.services-preview {
    padding: 100px 30px;
    background: #ffffff;
}

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

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

.service-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    flex: 0 1 calc(50% - 20px);
    max-width: 560px;
    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-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #1a252f;
}

.service-card p {
    margin: 0 25px 15px;
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.service-card .price {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin: 15px 25px;
}

.select-service {
    margin: 20px 25px 25px;
    padding: 12px 28px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.testimonials-split {
    display: flex;
    background: #ffffff;
}

.testimonial-content {
    flex: 1;
    padding: 80px 60px;
}

.testimonial-content h3 {
    font-size: 32px;
    margin-bottom: 35px;
    color: #1a252f;
}

blockquote {
    margin-bottom: 35px;
    padding-left: 25px;
    border-left: 4px solid #3498db;
}

blockquote p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #4a5568;
    font-style: italic;
}

cite {
    font-size: 15px;
    color: #6c757d;
    font-style: normal;
}

.testimonial-image {
    flex: 1;
    background: #e2e8f0;
    min-height: 500px;
}

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

.approach-section {
    padding: 100px 30px;
    background: #f8f9fa;
}

.approach-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a252f;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.step {
    flex: 0 1 calc(25% - 30px);
    min-width: 220px;
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #e9ecef;
    display: block;
    margin-bottom: 15px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a252f;
}

.step p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
}

.form-section {
    padding: 100px 30px;
    background: #ffffff;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: #1a252f;
}

.form-section > div > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 17px;
    color: #4a5568;
}

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

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1a252f;
}

.disclaimer-section {
    padding: 60px 30px;
    background: #f8f9fa;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: #6c757d;
    text-align: center;
}

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

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

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

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

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

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

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

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

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

.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: #2c3e50;
    color: #ffffff;
    padding: 25px 30px;
    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;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-accept {
    background: #3498db;
    color: #ffffff;
}

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    opacity: 0.8;
}

.page-header {
    padding: 80px 30px;
    background: #f8f9fa;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #1a252f;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: #4a5568;
}

.content-split {
    display: flex;
    padding: 80px 0;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-text {
    flex: 1;
    padding: 0 30px;
}

.content-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
}

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

.content-image {
    flex: 1;
    background: #e2e8f0;
}

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

.methodology-section {
    padding: 80px 30px;
    background: #f8f9fa;
}

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

.methodology-section > p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 50px;
    color: #4a5568;
    max-width: 900px;
}

.method-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.method-block {
    flex: 0 1 calc(50% - 18px);
    background: #ffffff;
    padding: 35px;
    border: 1px solid #e9ecef;
}

.method-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a252f;
}

.method-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.background-split {
    display: flex;
    background: #ffffff;
}

.background-image {
    flex: 1;
    background: #e2e8f0;
    min-height: 500px;
}

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

.background-content {
    flex: 1;
    padding: 80px 60px;
}

.background-content h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a252f;
}

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

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

.values-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a252f;
}

.values-list {
    list-style: none;
}

.values-list li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    padding-left: 30px;
    position: relative;
    color: #4a5568;
}

.values-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.cta-section {
    padding: 80px 30px;
    background: #ffffff;
    text-align: center;
}

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

.cta-section p {
    font-size: 17px;
    margin-bottom: 35px;
    color: #4a5568;
}

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

.services-detailed {
    padding: 60px 30px;
    background: #ffffff;
}

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

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

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

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

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a5568;
}

.service-detail-content h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #1a252f;
}

.service-detail-content ul {
    margin-bottom: 25px;
    padding-left: 25px;
}

.service-detail-content ul li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #4a5568;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 25px 0;
}

.service-detail-image {
    flex: 1;
    background: #e2e8f0;
    min-height: 400px;
}

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

.contact-content {
    padding: 60px 30px;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 35px;
    color: #1a252f;
}

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

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a252f;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-block .note {
    font-size: 14px;
    color: #6c757d;
    margin-top: 10px;
}

.contact-image {
    flex: 1;
    background: #e2e8f0;
    min-height: 500px;
}

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

.location-section {
    padding: 80px 30px;
    background: #f8f9fa;
}

.location-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: #1a252f;
}

.location-section > p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 50px;
    color: #4a5568;
}

.location-details {
    display: flex;
    gap: 40px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.location-item {
    text-align: center;
    flex: 1;
}

.location-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a252f;
}

.location-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
}

.faq-section {
    padding: 80px 30px;
    background: #ffffff;
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a252f;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a252f;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.thanks-section {
    padding: 120px 30px;
    background: #f8f9fa;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a252f;
}

.thanks-content > p {
    font-size: 20px;
    margin-bottom: 50px;
    color: #4a5568;
}

.thanks-info {
    background: #ffffff;
    padding: 40px;
    margin: 50px auto;
    max-width: 700px;
    border: 1px solid #e9ecef;
    text-align: left;
}

.thanks-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a252f;
}

.thanks-info ol {
    padding-left: 25px;
}

.thanks-info ol li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #4a5568;
}

.service-confirmation {
    background: #e8f4f8;
    padding: 20px;
    margin: 30px 0;
    border-left: 4px solid #3498db;
}

.service-confirmation p {
    font-size: 17px;
    color: #2c3e50;
    margin: 0;
}

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

.legal-content {
    padding: 60px 30px;
    background: #ffffff;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a252f;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a252f;
}

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

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #1a252f;
}

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

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

.legal-content ul li,
.legal-content ol li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #4a5568;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

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

.gdpr-table th,
.cookies-table th {
    background: #f8f9fa;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #1a252f;
    border: 1px solid #e9ecef;
}

.gdpr-table td,
.cookies-table td {
    padding: 15px;
    border: 1px solid #e9ecef;
    color: #4a5568;
}

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

    .hero-split,
    .insight-split,
    .testimonials-split,
    .background-split,
    .content-split,
    .contact-split,
    .service-detail-split {
        flex-direction: column;
    }

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

    .hero-text h1,
    .page-header h1 {
        font-size: 36px;
    }

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

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

    .approach-steps {
        flex-direction: column;
    }

    .method-blocks {
        flex-direction: column;
    }

    .method-block {
        flex: 1 1 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .location-details {
        flex-direction: column;
    }

    .cta-buttons,
    .thanks-actions {
        flex-direction: column;
    }
}