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

:root {
    --primary-color: #1e40af;
    --secondary-color: #0ea5e9;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --accent-color: #22c55e;
    --text-color: #334155;
    --border-color: #e2e8f0;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

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

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

.btn-accept:hover {
    background: #16a34a;
}

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

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

.main-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 24px;
}

.hero-left p {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.2);
}

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

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

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

.split-content h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.split-content h3 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 16px;
}

.split-content p {
    font-size: 18px;
    margin-bottom: 16px;
}

.split-visual {
    flex: 1;
    padding: 40px;
}

.split-visual img {
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.intro-statement {
    background: var(--light-color);
    padding: 80px 20px;
}

.problem-reveal {
    padding: 80px 20px;
}

.stat-card {
    background: var(--primary-color);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 18px;
}

.services-section {
    padding: 80px 20px;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 20px;
    color: var(--text-color);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    display: flex;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-left {
    flex: 1;
    padding: 40px;
}

.service-left h3 {
    font-size: 26px;
    color: var(--dark-color);
    margin-bottom: 16px;
}

.service-left p {
    font-size: 17px;
    margin-bottom: 20px;
}

.service-benefits {
    list-style: none;
    margin-bottom: 20px;
}

.service-benefits li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 16px;
}

.service-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-right {
    width: 280px;
    background: var(--light-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
}

.price {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.select-service {
    padding: 14px 32px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.insight-section {
    background: var(--dark-color);
    color: white;
    padding: 80px 20px;
}

.insight-section .split-content h2 {
    color: white;
}

.insight-section .split-content p {
    color: rgba(255, 255, 255, 0.9);
}

.testimonials-inline {
    padding: 80px 20px;
    background: var(--light-color);
    text-align: center;
}

.testimonials-inline h2 {
    font-size: 38px;
    color: var(--dark-color);
    margin-bottom: 50px;
}

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

.testimonial {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.author {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
}

.value-proposition {
    padding: 80px 20px;
}

.benefit-box {
    background: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
}

.benefit-box h4 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.benefit-box p {
    margin: 0;
    font-size: 16px;
}

.form-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 20px;
}

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

.form-left {
    flex: 1;
    color: white;
}

.form-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.form-left p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 17px;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 20px;
}

.form-right {
    flex: 1;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    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: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-cta {
    padding: 100px 20px;
    background: var(--light-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

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

.main-footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 20px 20px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.7;
}

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

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

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

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.7;
}

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

.sticky-cta a {
    display: block;
    padding: 16px 32px;
    background: var(--accent-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: #16a34a;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
}

.page-hero {
    padding: 80px 20px;
    background: var(--light-color);
}

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

.content-wrapper h1 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.content-wrapper h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-top: 40px;
    margin-bottom: 16px;
}

.content-wrapper p {
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.story-section {
    padding: 80px 20px;
    background: white;
}

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

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

.values-section h2 {
    text-align: center;
    font-size: 38px;
    color: var(--dark-color);
    margin-bottom: 50px;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 17px;
    line-height: 1.7;
}

.approach-section {
    padding: 80px 20px;
    background: white;
}

.cta-about,
.cta-services,
.cta-contact {
    padding: 80px 20px;
    background: var(--primary-color);
    text-align: center;
}

.cta-about .cta-content h2,
.cta-services .cta-content h2,
.cta-contact .cta-content h2 {
    color: white;
}

.cta-about .cta-content p,
.cta-services .cta-content p,
.cta-contact .cta-content p {
    color: rgba(255, 255, 255, 0.9);
}

.services-detailed {
    padding: 40px 20px 80px;
}

.service-detail {
    padding: 60px 0;
}

.service-detail.reverse {
    background: var(--light-color);
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: block;
}

.cta-inline {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

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

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

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

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

.step-number {
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    line-height: 60px;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.step p {
    font-size: 16px;
    line-height: 1.6;
}

.contact-info-section {
    padding: 80px 20px;
}

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

.contact-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-card h2 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.contact-details,
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-item h3,
.faq-item h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.detail-item p,
.faq-item p {
    font-size: 16px;
    line-height: 1.6;
}

.map-placeholder {
    background: var(--light-color);
    padding: 60px 20px;
    text-align: center;
}

.map-notice {
    max-width: 600px;
    margin: 0 auto;
}

.map-notice p {
    font-size: 18px;
    margin-bottom: 12px;
}

.legal-content {
    background: white;
}

.legal-content .content-wrapper {
    max-width: 900px;
}

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

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

.legal-content h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-top: 30px;
    margin-bottom: 12px;
}

.legal-content h4 {
    font-size: 20px;
    color: var(--dark-color);
    margin-top: 24px;
    margin-bottom: 10px;
}

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

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

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

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background: var(--light-color);
    font-weight: 600;
}

.thanks-section {
    padding: 100px 20px;
    background: var(--light-color);
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--text-color);
}

.service-confirmation {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.next-steps {
    margin: 60px 0;
}

.next-steps h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 40px;
}

.steps-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.step-item {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.step-num {
    display: block;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    line-height: 50px;
    margin: 0 auto 16px;
}

.step-item h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.step-item p {
    font-size: 15px;
    line-height: 1.6;
}

.thanks-info {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info p {
    margin-bottom: 12px;
    font-size: 16px;
}

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

.btn-home {
    padding: 14px 32px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 14px 32px;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

    .hero-left,
    .split-content,
    .split-visual {
        padding: 40px 30px;
    }

    .service-card {
        flex-direction: column;
    }

    .service-right {
        width: 100%;
    }

    .form-container,
    .testimonial-split,
    .contact-grid {
        flex-direction: column;
    }

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

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

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

    .hero-left p {
        font-size: 17px;
    }

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

    .section-header h2 {
        font-size: 32px;
    }

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

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

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

    .sticky-cta a {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-left,
    .split-content {
        padding: 30px 20px;
    }

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

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