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

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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e6ed;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a365d;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 11px;
    color: #718096;
    background-color: #f7fafc;
    padding: 4px 12px;
    border-radius: 4px;
    margin: 0 20px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #f7fafc;
}

.hero-left h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a202c;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 36px;
    line-height: 1.7;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2b6cb0;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
}

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

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
    line-height: 1.2;
}

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

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

.split-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-preview {
    padding: 100px 0;
    background-color: #edf2f7;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 60px;
}

.section-title.centered {
    text-align: center;
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-card-modern {
    display: flex;
    gap: 50px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card-modern.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    background-color: #e2e8f0;
}

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

.service-details {
    flex: 1;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

.service-details p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
}

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

.btn-select {
    padding: 14px 28px;
    background-color: #2b6cb0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

.btn-select:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
}

.method-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.testimonials-section {
    padding: 100px 0;
    background-color: #f7fafc;
}

.testimonials-split {
    display: flex;
    gap: 40px;
}

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

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

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

.split-form {
    flex: 1;
    background-color: #f7fafc;
    padding: 48px;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    background-color: #ffffff;
    color: #2d3748;
}

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

.btn-submit {
    padding: 16px 32px;
    background-color: #2b6cb0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
}

.disclaimer-text {
    font-size: 14px;
    color: #718096;
    font-style: italic;
    margin-top: 16px;
    line-height: 1.6;
}

.footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 60px 0 30px;
}

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

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

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

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

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

.footer-column ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
    color: #a0aec0;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px 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;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-accept {
    background-color: #48bb78;
    color: #ffffff;
}

.btn-accept:hover {
    transform: translateY(-2px);
}

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.page-hero {
    padding: 80px 0 60px;
    background-color: #f7fafc;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 20px;
    color: #4a5568;
}

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

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

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

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

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

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

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: #2d3748;
}

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

.service-pricing-detail {
    margin: 28px 0;
    padding: 20px;
    background-color: #edf2f7;
    border-radius: 6px;
}

.price-label {
    font-size: 15px;
    color: #4a5568;
    margin-right: 12px;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e2e8f0;
}

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

.cta-section {
    padding: 80px 0;
    background-color: #2b6cb0;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
}

.about-intro {
    padding: 80px 0;
}

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

.values-section {
    padding: 100px 0;
    background-color: #ffffff;
}

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

.value-card {
    flex: 1 1 calc(50% - 20px);
    padding: 36px;
    background-color: #f7fafc;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.team-section {
    padding: 80px 0;
    background-color: #edf2f7;
}

.results-section {
    padding: 80px 0;
}

.results-list {
    list-style: none;
    margin: 24px 0;
}

.results-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: #2d3748;
    line-height: 1.6;
}

.results-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2b6cb0;
    font-weight: 700;
}

.disclaimer-small {
    font-size: 13px;
    color: #718096;
    font-style: italic;
    margin-top: 20px;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

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

.email-display {
    color: #4a5568;
    pointer-events: none;
}

.contact-note {
    margin-top: 24px;
    padding: 20px;
    background-color: #edf2f7;
    border-radius: 6px;
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.location-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

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

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

.faq-item {
    flex: 1 1 calc(50% - 20px);
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

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

.thanks-section {
    padding: 120px 0;
    background-color: #f7fafc;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 19px;
    color: #4a5568;
    margin-bottom: 28px;
    line-height: 1.7;
}

.service-confirmation {
    padding: 20px;
    background-color: #e6fffa;
    border-radius: 6px;
    margin: 24px 0;
    font-size: 16px;
    color: #234e52;
}

.thanks-info {
    font-size: 15px;
    color: #718096;
    margin-bottom: 40px;
}

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

.btn-primary {
    padding: 16px 32px;
    background-color: #2b6cb0;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 16px 32px;
    background-color: transparent;
    color: #2b6cb0;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2b6cb0;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-secondary:hover {
    background-color: #ebf8ff;
    transform: translateY(-2px);
}

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

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

.step-card {
    flex: 1;
    text-align: center;
    padding: 32px 24px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

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

.legal-page {
    padding: 60px 0 100px;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 12px;
}

.updated {
    font-size: 14px;
    color: #718096;
    margin-bottom: 48px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2d3748;
    margin-top: 32px;
    margin-bottom: 12px;
}

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

.legal-page ul {
    margin: 16px 0 24px 24px;
}

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

.contact-details {
    padding: 20px;
    background-color: #f7fafc;
    border-radius: 6px;
    line-height: 1.8;
    margin: 20px 0;
}

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

.gdpr-table thead,
.cookie-table thead {
    background-color: #edf2f7;
}

.gdpr-table th,
.cookie-table th {
    padding: 14px;
    text-align: left;
    font-weight: 600;
    color: #2d3748;
    border-bottom: 2px solid #cbd5e0;
}

.gdpr-table td,
.cookie-table td {
    padding: 14px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 15px;
    color: #4a5568;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 60px 30px;
    }

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

    .hero-right {
        min-height: 400px;
    }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

    .service-card-modern,
    .service-card-modern.reverse {
        flex-direction: column;
    }

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

    .testimonials-split {
        flex-direction: column;
    }

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

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

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

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

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

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

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

    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .nav {
        flex-wrap: wrap;
        gap: 16px;
    }
}

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

    .hero-subtitle {
        font-size: 17px;
    }

    .section-title {
        font-size: 32px;
    }

    .split-content h2 {
        font-size: 28px;
    }

    .service-details {
        padding: 32px;
    }

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

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