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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #ddd;
    --overlay-dark: rgba(0, 0, 0, 0.6);
}

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

.ad-disclosure {
    background: var(--light-bg);
    padding: 8px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    border-bottom: 1px solid var(--border-color);
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

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

.hero-offset {
    display: flex;
    min-height: 85vh;
    padding: 80px 5% 80px 8%;
    position: relative;
    overflow: hidden;
}

.hero-content-left {
    flex: 1;
    max-width: 550px;
    padding-top: 60px;
    z-index: 2;
}

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 50px;
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.stat-block {
    display: flex;
    flex-direction: column;
}

.stat-block.offset-up {
    margin-top: -20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    margin-top: 8px;
}

.hero-image-overlap {
    position: absolute;
    right: -50px;
    top: 120px;
    width: 55%;
    height: 550px;
    z-index: 1;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: var(--light-bg);
}

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

.problem-zigzag {
    display: flex;
    padding: 120px 5%;
    gap: 80px;
    align-items: center;
    background: var(--light-bg);
}

.content-block.narrow-right {
    flex: 1;
    max-width: 500px;
    margin-left: 60px;
}

.content-block h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.2;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.visual-element-left {
    width: 450px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    background-color: #e0e0e0;
}

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

.insight-cards-irregular {
    padding: 100px 5% 120px 8%;
}

.section-title-offset {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 60px;
    margin-left: 40px;
}

.cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    flex: 1 1 280px;
}

.card.card-large {
    flex: 1 1 400px;
    background: var(--primary-color);
    color: var(--white);
}

.card.card-elevated {
    margin-top: -40px;
    border: 2px solid var(--secondary-color);
}

.card.card-wide {
    flex: 1 1 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: 60px;
}

.card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: inherit;
}

.card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: inherit;
    opacity: 0.9;
}

.services-split {
    padding: 100px 5%;
    background: var(--white);
}

.services-intro-diagonal {
    max-width: 650px;
    margin-bottom: 70px;
    margin-left: 50px;
}

.services-intro-diagonal h2 {
    font-size: 2.6rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.services-intro-diagonal p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.services-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: flex-start;
}

.service-item {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    padding-bottom: 30px;
}

.service-item:nth-child(2n) {
    margin-top: 40px;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.service-item.service-featured {
    border: 3px solid var(--secondary-color);
}

.service-image-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: var(--light-bg);
}

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

.service-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 25px 25px 15px;
}

.service-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0 25px 20px;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 25px;
}

.btn-service-select {
    margin: 0 25px;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-service-select:hover {
    background: #2980b9;
}

.testimonial-inline {
    padding: 80px 10%;
    background: var(--light-bg);
}

.testimonial-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    background: var(--white);
    border-left: 5px solid var(--secondary-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: block;
    font-size: 1rem;
    color: #666;
    font-weight: 600;
}

.form-section-diagonal {
    display: flex;
    padding: 100px 5%;
    gap: 80px;
    align-items: center;
    background: var(--white);
}

.form-container-offset {
    flex: 1;
    max-width: 550px;
}

.form-container-offset h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.form-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

#selected-service-display {
    font-weight: 700;
    color: var(--secondary-color);
}

.form-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 16px 40px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

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

.form-visual-element {
    width: 450px;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: #e0e0e0;
}

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

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

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #777;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.footer-asymmetric {
    display: flex;
    justify-content: space-between;
    padding: 80px 5%;
    background: var(--primary-color);
    color: var(--white);
    gap: 60px;
}

.footer-col {
    flex: 1;
}

.footer-col-main {
    flex: 1.5;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 200;
    display: none;
}

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 5%;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-color);
}

.cookie-content p a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.btn-cookie {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.btn-cookie:hover {
    background: #2980b9;
}

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

.btn-cookie.btn-secondary:hover {
    background: var(--light-bg);
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        padding: 60px 5%;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        margin-top: 40px;
    }

    .problem-zigzag {
        flex-direction: column;
    }

    .content-block.narrow-right {
        margin-left: 0;
    }

    .form-section-diagonal {
        flex-direction: column;
    }

    .form-visual-element {
        width: 100%;
        height: 400px;
    }

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

    .service-item {
        flex: 1 1 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .hero-content-left h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-block.offset-up {
        margin-top: 0;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

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

    .service-item:nth-child(2n) {
        margin-top: 0;
    }

    .cards-asymmetric {
        flex-direction: column;
    }

    .card.card-wide {
        margin-right: 0;
    }

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

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

.page-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.page-content {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 50px;
    margin-bottom: 20px;
}

.page-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

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

.page-content ul li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #555;
}

.contact-info-box {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.contact-info-box h3 {
    margin-top: 0;
}

.contact-info-box p {
    margin-bottom: 15px;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 5%;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.thanks-container p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
}

.btn-back {
    padding: 16px 40px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s;
    display: inline-block;
}

.btn-back:hover {
    background: #2980b9;
}