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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --border-color: #dee2e6;
}

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

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

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

.navbar {
    background: var(--primary-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 1px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    color: var(--text-light);
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.9;
    line-height: 1.6;
}

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

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

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

.btn-primary:hover {
    background: #d63651;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

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

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

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

.insight-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 700;
}

.insight-section p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.split-content {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

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

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

.content-text h3 {
    font-size: 34px;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.content-visual {
    flex: 1;
}

.content-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.link-inline {
    color: var(--highlight-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
    font-size: 17px;
    transition: all 0.3s;
}

.link-inline:hover {
    transform: translateX(5px);
}

.trust-block {
    background: var(--secondary-color);
    padding: 100px 20px;
    color: var(--text-light);
}

.testimonial-large {
    font-size: 28px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 25px;
    border-left: 4px solid var(--highlight-color);
    padding-left: 40px;
}

.testimonial-author {
    font-size: 18px;
    opacity: 0.8;
    padding-left: 40px;
}

.service-cards {
    padding: 100px 20px;
    background: white;
}

.service-cards h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    max-width: 380px;
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: 8px;
    transition: all 0.3s;
}

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

.service-card h4 {
    font-size: 24px;
    margin-bottom: 18px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--highlight-color);
    margin: 20px 0;
}

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

.btn-select-service:hover {
    background: var(--accent-color);
}

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

.form-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #555;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 18px;
    background: var(--highlight-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.final-cta h3 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
}

.final-cta p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.footer {
    background: #0a0a14;
    color: var(--text-light);
    padding: 60px 20px 20px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-col a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 12px;
    opacity: 0.8;
    transition: opacity 0.3s;
    font-size: 14px;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

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

.btn-sticky {
    display: inline-block;
    padding: 18px 35px;
    background: var(--highlight-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
    transition: all 0.3s;
    font-size: 16px;
}

.btn-sticky:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 25px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.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;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

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

.btn-cookie-accept:hover {
    background: #d63651;
}

.btn-cookie-reject {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 120px 20px 80px;
    color: var(--text-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 800;
}

.subtitle {
    font-size: 20px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.values-section {
    padding: 100px 20px;
    background: white;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.value-item {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 280px;
    max-width: 380px;
}

.value-item h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: var(--text-dark);
    font-weight: 700;
}

.value-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.team-intro {
    padding: 100px 20px;
    background: var(--light-bg);
}

.team-intro h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 700;
}

.team-intro p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

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

.stats-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
    flex: 1 1 250px;
}

.stat-item h3 {
    font-size: 52px;
    margin-bottom: 15px;
    color: var(--highlight-color);
    font-weight: 800;
}

.stat-item p {
    font-size: 17px;
    opacity: 0.9;
}

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

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #555;
}

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

.service-block {
    margin-bottom: 80px;
    padding: 50px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.service-block.featured {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid var(--highlight-color);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
}

.service-header h2 {
    font-size: 34px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-price {
    font-size: 32px;
    color: var(--highlight-color);
    font-weight: 700;
}

.service-content-split {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 30px;
}

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

.service-description {
    flex: 1.5;
}

.service-description p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

.service-description h4 {
    font-size: 20px;
    margin: 30px 0 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-description ul {
    list-style: none;
    padding: 0;
}

.service-description li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.service-description li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: 700;
    font-size: 18px;
}

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.contact-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.contact-item a {
    color: var(--highlight-color);
    text-decoration: none;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 6px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.map-placeholder {
    padding: 60px 20px;
    background: var(--light-bg);
}

.map-info {
    text-align: center;
}

.map-info p {
    font-size: 16px;
    color: #555;
}

.thanks-section {
    padding: 120px 20px;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 800;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
    color: #555;
}

.service-confirmation {
    font-size: 18px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 6px;
    margin-bottom: 40px;
    color: #555;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 50px auto;
    padding: 40px;
    background: var(--light-bg);
    border-radius: 8px;
}

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

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: 700;
    font-size: 20px;
}

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

.legal-page {
    padding: 80px 20px;
    min-height: 60vh;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 800;
}

.updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-page h4 {
    font-size: 18px;
    margin: 25px 0 12px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.legal-page ul {
    margin: 20px 0 20px 30px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #555;
}

.legal-page a {
    color: var(--highlight-color);
    text-decoration: none;
}

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

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

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

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

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

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

    .content-text {
        padding: 30px 20px;
    }

    .content-text h3 {
        font-size: 28px;
    }

    .content-visual img {
        height: 350px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

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

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

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

    .cookie-actions {
        justify-content: stretch;
        flex-direction: column;
    }

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

    .btn-sticky {
        padding: 14px 25px;
        font-size: 14px;
    }

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

    .service-block {
        padding: 30px 20px;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

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

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

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

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

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