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

:root {
    --primary: #2C3E50;
    --accent: #E67E22;
    --text-dark: #1A1A1A;
    --text-light: #5A5A5A;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border: #E0E0E0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--bg-white);
    padding: 20px;
    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;
    flex-wrap: wrap;
}

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

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

.btn-cookie {
    background: var(--accent);
    color: white;
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-cookie:hover {
    background: #D35400;
}

.btn-cookie.btn-secondary {
    background: transparent;
    border: 1px solid white;
}

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

.header {
    background: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

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

.ad-disclosure {
    font-size: 13px;
    color: var(--text-light);
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
}

.nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--accent);
}

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

.hero-left {
    flex: 1.2;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-light);
}

.hero-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--primary);
    font-weight: 700;
}

.hero-left p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

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

.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #D35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

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

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

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

.split-content {
    flex: 1;
}

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

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

.split-image {
    flex: 1;
    background: var(--bg-light);
}

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

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

.story-section {
    padding: 120px 0;
    background: var(--primary);
    color: white;
}

.story-section h2 {
    font-size: 42px;
    margin-bottom: 35px;
    color: white;
}

.story-section p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.95;
}

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

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

.section-header-center h2 {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--primary);
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: var(--bg-light);
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 30px 15px;
    color: var(--primary);
}

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 30px 15px;
}

.service-duration {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    margin: 20px 30px 10px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    margin: 15px 30px;
}

.btn-service {
    width: calc(100% - 60px);
    margin: 20px 30px 30px;
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-service:hover {
    background: #1A252F;
}

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

.split-form {
    flex: 1;
    background: var(--bg-white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.service-display {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
    font-weight: 500;
    color: var(--primary);
    display: none;
}

.service-display.show {
    display: block;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

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

.btn-submit:hover {
    background: #D35400;
}

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

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.testimonial-author {
    font-style: italic;
    color: var(--text-light);
    font-size: 15px;
}

.final-cta-section {
    padding: 120px 0;
    background: var(--primary);
    color: white;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: white;
}

.final-cta-section p {
    font-size: 20px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.final-cta-section .btn-primary {
    margin-top: 20px;
}

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

.disclaimer-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
}

.footer {
    background: #1A252F;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

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

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

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

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-left {
        padding: 50px 30px;
    }

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

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

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

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

    .split-form {
        padding: 30px 20px;
    }

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

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

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--primary);
}

.legal-update {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

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

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

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

.legal-content ul, .legal-content ol {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.legal-content ul li, .legal-content ol li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.legal-content a:hover {
    color: #D35400;
}

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

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

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

.contact-split {
    display: flex;
    gap: 60px;
    padding: 80px 0;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.contact-info-block {
    flex: 1;
}

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

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.email-display {
    color: var(--text-dark);
    font-weight: 500;
}

.contact-map-placeholder {
    flex: 1;
    background: var(--bg-light);
}

.map-replacement {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.map-replacement img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.contact-additional h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary);
}

.contact-additional p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

.thanks-section h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--primary);
}

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

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

.next-steps {
    margin: 50px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--primary);
}

.next-steps ol {
    margin-left: 25px;
}

.next-steps ol li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 16px 40px;
    text-decoration: none;
    border: 2px solid var(--primary);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
}

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

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

    .map-replacement {
        min-height: 400px;
    }
}