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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2c7fb8;
    --accent-color: #f5a623;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: var(--accent-color);
    color: var(--text-dark);
}

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

.btn-cookie-reject {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.nav-asymmetric {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

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

.nav-disclosure {
    font-size: 0.8rem;
    color: var(--text-light);
}

.ad-label {
    font-style: italic;
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    padding: 4rem 5%;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eef3 100%);
}

.hero-content-left {
    flex: 1;
    max-width: 600px;
}

.hero-content-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtext {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

.hero-image-right {
    flex: 1;
    max-width: 700px;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e0e0e0;
}

.intro-block {
    padding: 5rem 5%;
    background: var(--bg-white);
}

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

.intro-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.intro-narrow p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.problem-amplification {
    padding: 4rem 5%;
    background: var(--bg-light);
}

.split-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.split-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.services-showcase {
    padding: 5rem 5%;
    background: var(--bg-white);
}

.services-header-offset {
    max-width: 700px;
    margin-bottom: 3rem;
}

.services-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.services-intro {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-asymmetric-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-large {
    flex: 1 1 calc(66.666% - 2rem);
}

.service-featured {
    border: 2px solid var(--accent-color);
}

.service-visual {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.service-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-info p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.btn-service-select {
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.trust-builder {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    color: var(--bg-white);
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.metrics-asymmetric {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.metric-item {
    text-align: center;
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-inline {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.testimonial-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial-quote {
    flex: 1;
    min-width: 300px;
    background: var(--bg-white);
    padding: 2.5rem;
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
}

.testimonial-quote p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.form-section-offset {
    padding: 5rem 5%;
    background: var(--bg-white);
}

.form-container-asymmetric {
    max-width: 700px;
    margin: 0 0 0 auto;
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.form-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    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(--secondary-color);
}

.btn-form-submit {
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

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

.footer-asymmetric {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

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

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

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.page-header {
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.page-content {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.page-content h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--primary-color);
}

.page-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.page-content p {
    margin-bottom: 1.5rem;
}

.page-content ul,
.page-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.8rem;
}

.contact-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

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

.contact-info p {
    margin-bottom: 1rem;
}

.thanks-container {
    text-align: center;
    max-width: 700px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.thanks-container h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-container .btn-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-container .btn-home:hover {
    background: var(--secondary-color);
}

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

    .hero-content-left h1 {
        font-size: 2.2rem;
    }

    .split-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .service-card,
    .service-large {
        flex: 1 1 100%;
    }

    .nav-asymmetric {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .testimonial-wrapper {
        flex-direction: column;
    }

    .form-container-asymmetric {
        margin: 0 auto;
    }
}