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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #fafafa;
}

.ad-notice {
    background: #f0f0f0;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.75rem;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.nav-floating {
    position: fixed;
    top: 3rem;
    right: 2rem;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-brand {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nav-links a {
    color: #444;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #0066cc;
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
}

.hero-content-offset {
    max-width: 600px;
    margin-left: 8%;
    margin-top: -5%;
    z-index: 2;
    position: relative;
}

.hero-content-offset h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-content-offset p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.hero-image-overlap {
    position: absolute;
    right: -10%;
    top: 10%;
    width: 55%;
    height: 80%;
    background: #e8e8e8;
    border-radius: 24px;
    overflow: hidden;
    transform: rotate(3deg);
}

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

.cta-primary {
    display: inline-block;
    background: #0066cc;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #0052a3;
}

.intro-block {
    padding: 8rem 2rem;
    background: #fff;
}

.intro-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.intro-narrow p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.insight-offset {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 6rem 2rem;
    background: #f8f8f8;
    position: relative;
}

.insight-image-left {
    flex: 1;
    margin-left: 5%;
    margin-top: -3rem;
    background: #ddd;
    border-radius: 16px;
    overflow: hidden;
}

.insight-image-left img {
    width: 100%;
    height: auto;
    display: block;
}

.insight-text-right {
    flex: 1;
    max-width: 550px;
    margin-right: 8%;
}

.insight-text-right h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.insight-text-right p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #555;
    line-height: 1.7;
}

.testimonial-overlap {
    padding: 5rem 2rem;
    background: #0066cc;
    position: relative;
    margin-left: 15%;
    margin-right: -5%;
    transform: skewY(-2deg);
    margin-top: -3rem;
}

.testimonial-overlap blockquote {
    transform: skewY(2deg);
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-overlap p {
    font-size: 1.5rem;
    color: #fff;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-overlap cite {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-style: normal;
}

.services-grid {
    padding: 8rem 2rem;
    background: #fff;
}

.section-header-offset {
    max-width: 600px;
    margin-left: 10%;
    margin-bottom: 4rem;
}

.section-header-offset h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header-offset p {
    font-size: 1.2rem;
    color: #666;
}

.services-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    width: calc(33.333% - 1.5rem);
    min-width: 320px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card.offset-top {
    margin-top: -2rem;
}

.service-card.offset-bottom {
    margin-top: 2rem;
}

.service-card.offset-center {
    margin-top: 1rem;
}

.service-card.offset-right {
    margin-top: -1.5rem;
}

.service-card.offset-left {
    margin-top: 1.5rem;
}

.service-card.offset-bottom-right {
    margin-top: 2.5rem;
}

.service-card img {
    width: 100%;
    height: 240px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
}

.service-card p {
    margin: 0 1.5rem 1rem;
    color: #555;
    line-height: 1.6;
}

.service-card .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0066cc;
    margin: 1.5rem 1.5rem 1rem;
}

.service-card .select-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.875rem;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.service-card .select-service:hover {
    background: #0052a3;
}

.service-card .select-service.selected {
    background: #28a745;
}

.trust-block {
    padding: 7rem 2rem;
    background: #f4f4f4;
}

.trust-content-split {
    display: flex;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-left {
    flex: 1;
    margin-left: 5%;
}

.trust-left h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.testimonial-inline {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.testimonial-inline p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.testimonial-inline cite {
    color: #666;
    font-size: 0.95rem;
}

.trust-right {
    flex: 1;
    margin-right: 5%;
}

.trust-right h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.trust-right ul {
    list-style: none;
}

.trust-right li {
    padding: 1rem 0;
    font-size: 1.1rem;
    color: #444;
    border-bottom: 1px solid #ddd;
    padding-left: 1.5rem;
    position: relative;
}

.trust-right li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.form-section-diagonal {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
    position: relative;
}

.form-container-offset {
    max-width: 600px;
    margin-left: auto;
    margin-right: 12%;
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-container-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-container-offset > p {
    margin-bottom: 2rem;
    color: #666;
    font-size: 1.1rem;
}

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

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

.form-group label {
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group select {
    padding: 0.875rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0066cc;
}

.btn-submit {
    padding: 1rem 2rem;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #0052a3;
}

.final-cta-overlap {
    padding: 6rem 2rem;
    background: #1a1a1a;
    margin-left: -5%;
    margin-right: 10%;
    transform: skewY(1deg);
}

.cta-content {
    transform: skewY(-1deg);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.75rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    background: #fff;
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.cta-secondary:hover {
    transform: scale(1.05);
}

.footer-asymmetric {
    background: #2c2c2c;
    color: #fff;
    padding: 4rem 2rem 2rem;
}

.footer-main {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-col p {
    color: #bbb;
    line-height: 1.6;
}

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

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

.footer-col a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

.footer-disclaimer p {
    color: #999;
    font-size: 0.85rem;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s;
}

.btn-accept {
    background: #0066cc;
    color: #fff;
}

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background: #666;
    color: #fff;
}

.btn-reject:hover {
    opacity: 0.9;
}

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

    .hero-image-overlap {
        width: 60%;
        right: -5%;
    }

    .insight-offset {
        flex-direction: column;
    }

    .trust-content-split {
        flex-direction: column;
        gap: 3rem;
    }

    .service-card {
        width: calc(50% - 1rem);
    }

    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        top: 1rem;
        right: 1rem;
        padding: 1rem 1.5rem;
    }

    .hero-content-offset {
        margin-left: 0;
        margin-top: 0;
    }

    .hero-content-offset h1 {
        font-size: 2rem;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 400px;
        margin-top: 2rem;
        right: 0;
        transform: none;
    }

    .service-card {
        width: 100%;
    }

    .service-card.offset-top,
    .service-card.offset-bottom,
    .service-card.offset-center,
    .service-card.offset-right,
    .service-card.offset-left,
    .service-card.offset-bottom-right {
        margin-top: 0;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}