* {
    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-color: #ffffff;
}

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

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

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

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

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

.hero-split {
    display: flex;
    min-height: 500px;
    padding: 60px 5%;
    gap: 60px;
    align-items: center;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a252f;
}

.hero-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #546e7a;
}

.hero-right {
    flex: 1;
}

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

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

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

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #2c3e50;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 16px;
}

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

.intro-reverse {
    display: flex;
    flex-direction: row-reverse;
    padding: 80px 5%;
    gap: 60px;
    background-color: #f8f9fa;
    align-items: center;
}

.intro-image {
    flex: 1;
}

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

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.intro-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #546e7a;
}

.services-preview {
    padding: 80px 5%;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a252f;
}

.services-header p {
    font-size: 18px;
    color: #546e7a;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 32px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #546e7a;
}

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

.select-service {
    width: 100%;
    padding: 12px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
}

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

.trust-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    background-color: #2c3e50;
    color: #ffffff;
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
}

.trust-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #ecf0f1;
}

.trust-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #ecf0f1;
}

.process-section {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.step-split {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    min-width: 80px;
}

.step-details h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a252f;
}

.step-details p {
    font-size: 16px;
    line-height: 1.6;
    color: #546e7a;
}

.testimonials-offset {
    padding: 80px 5%;
}

.testimonials-offset h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a252f;
}

.testimonial-group {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 32px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #2c3e50;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #546e7a;
    font-weight: 600;
}

.cta-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    background-color: #3498db;
    color: #ffffff;
    align-items: center;
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-content p {
    font-size: 18px;
    color: #ecf0f1;
}

.cta-action {
    flex: 0 0 auto;
}

.cta-large {
    padding: 18px 40px;
    background-color: #ffffff;
    color: #3498db;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.form-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #e74c3c;
}

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a252f;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

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

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

footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 60px 5% 20px;
}

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

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

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

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

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    padding: 20px 0;
    border-top: 1px solid #34495e;
    border-bottom: 1px solid #34495e;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #95a5a6;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #7f8c8d;
}

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

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 14px;
}

.cookie-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #229954;
}

.cookie-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #7f8c8d;
}

.page-hero {
    padding: 60px 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #1a252f;
}

.page-hero p {
    font-size: 18px;
    color: #546e7a;
}

.about-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
}

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

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.about-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #546e7a;
}

.values-section {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

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

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

.value-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
}

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

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #546e7a;
}

.team-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
}

.team-content {
    flex: 1;
}

.team-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.team-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #546e7a;
}

.team-image {
    flex: 1;
}

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

.approach-section {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

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

.approach-content {
    max-width: 800px;
    margin: 0 auto;
}

.approach-content h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: #2c3e50;
}

.approach-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #546e7a;
}

.cta-centered {
    padding: 80px 5%;
    text-align: center;
    background-color: #ecf0f1;
}

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

.cta-centered p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #546e7a;
}

.services-detailed {
    padding: 40px 5%;
}

.service-detail-split {
    display: flex;
    padding: 60px 0;
    gap: 60px;
    align-items: center;
}

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

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

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

.service-detail-content h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #546e7a;
}

.service-detail-content ul {
    margin: 16px 0 16px 24px;
}

.service-detail-content li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #546e7a;
}

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

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

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

.contact-split {
    display: flex;
    padding: 60px 5%;
    gap: 60px;
}

.contact-info,
.contact-additional {
    flex: 1;
}

.contact-info h2,
.contact-additional h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #1a252f;
}

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

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

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

.legal-page {
    padding: 60px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a252f;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 16px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin: 32px 0 12px;
    color: #2c3e50;
}

.legal-page h4 {
    font-size: 18px;
    margin: 24px 0 12px;
    color: #34495e;
}

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

.legal-page ul,
.legal-page ol {
    margin: 16px 0 16px 32px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #546e7a;
}

.thanks-section {
    padding: 80px 5%;
    min-height: 500px;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.thanks-content > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #546e7a;
}

.thanks-content h2 {
    font-size: 32px;
    margin: 60px 0 32px;
    color: #1a252f;
    text-align: center;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details p {
    font-size: 17px;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 8px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 50px;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-item .step-number {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-item .step-text {
    flex: 1;
}

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

.step-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #546e7a;
}

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

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

    .nav-right {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .hero-split,
    .intro-reverse,
    .trust-split,
    .cta-split,
    .about-split,
    .team-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

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

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

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

    .testimonial-group {
        flex-direction: column;
    }

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

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }

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

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

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

    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
    }
}