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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.ad-disclosure {
    background: #f8f8f8;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

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

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2563eb;
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    padding: 80px 5%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

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

.hero-content-offset h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 25px;
    color: #0f172a;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 19px;
    color: #475569;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.cta-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 55%;
    height: 70%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(3deg);
    background-color: #cbd5e1;
}

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

.intro-offset {
    padding: 120px 5%;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-narrow {
    flex: 1.2;
}

.intro-narrow h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #0f172a;
    line-height: 1.3;
}

.intro-narrow p {
    font-size: 17px;
    color: #475569;
    line-height: 1.8;
}

.intro-highlight {
    flex: 0.8;
    background: #fef3c7;
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

.intro-highlight p {
    font-size: 19px;
    font-weight: 600;
    color: #92400e;
    line-height: 1.6;
}

.services-asymmetric {
    padding: 100px 5%;
    background: #f8fafc;
}

.services-header-left {
    max-width: 600px;
    margin-bottom: 60px;
}

.services-header-left h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #0f172a;
}

.services-header-left p {
    font-size: 18px;
    color: #64748b;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

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

.service-card.offset-top {
    margin-top: 40px;
}

.service-card.offset-bottom {
    margin-bottom: 40px;
}

.service-card.offset-center {
    margin: 20px 0;
}

.service-card img {
    width: 100%;
    height: 220px;
    background-color: #e2e8f0;
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #0f172a;
}

.service-card p {
    margin: 0 25px 20px;
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin: 0 25px 20px;
}

.select-service-btn {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 14px 25px;
    margin: 0 25px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.select-service-btn.selected {
    background: #16a34a;
}

.trust-section-overlap {
    padding: 100px 5%;
    background: linear-gradient(to right, #2563eb, #1d4ed8);
    color: #fff;
    position: relative;
}

.trust-content h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
}

.trust-items {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
}

.form-section-creative {
    padding: 120px 5%;
    background: #fff;
}

.form-wrapper-offset {
    max-width: 650px;
    margin-left: 10%;
}

.form-wrapper-offset h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #0f172a;
}

.form-intro {
    font-size: 17px;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.submit-btn {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

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

.testimonials-scattered {
    padding: 100px 5%;
    background: #f8fafc;
}

.testimonials-scattered h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #0f172a;
}

.testimonials-flex {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
}

.testimonial.offset-left {
    align-self: flex-start;
    max-width: 70%;
    margin-left: 0;
}

.testimonial.offset-right {
    align-self: flex-end;
    max-width: 70%;
    margin-right: 0;
}

.testimonial.offset-center {
    align-self: center;
    max-width: 80%;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #64748b;
    font-weight: 600;
}

.footer-asymmetric {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 5% 30px;
}

.footer-main {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 10px;
}

.disclaimer {
    max-width: 900px;
    margin: 20px auto 0;
    font-size: 13px;
    line-height: 1.6;
    color: #64748b;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: #fff;
    padding: 25px 5%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    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;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.cookie-accept {
    background: #2563eb;
    color: #fff;
}

.cookie-accept:hover {
    background: #1d4ed8;
}

.cookie-reject {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

.page-header {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 100px 5% 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #0f172a;
    margin-bottom: 15px;
}

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

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

.content-section h2 {
    font-size: 32px;
    color: #0f172a;
    margin: 40px 0 20px;
}

.content-section h3 {
    font-size: 24px;
    color: #334155;
    margin: 30px 0 15px;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.content-section ul,
.content-section ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-section li {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 10px;
}

.contact-info {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    padding: 80px 5%;
}

.contact-block {
    flex: 1;
    min-width: 300px;
}

.contact-block h3 {
    font-size: 24px;
    color: #0f172a;
    margin-bottom: 20px;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 12px;
}

.contact-block strong {
    color: #0f172a;
    font-weight: 600;
}

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

.thanks-content {
    max-width: 600px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    color: #16a34a;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 15px;
}

.thanks-content a {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 30px;
    transition: all 0.3s;
}

.thanks-content a:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

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

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 400px;
        margin-top: 40px;
        transform: rotate(0);
    }

    .hero-content-offset h1 {
        font-size: 38px;
    }

    .intro-offset {
        flex-direction: column;
        gap: 40px;
    }

    .services-grid-irregular {
        flex-direction: column;
    }

    .service-card {
        margin: 0 !important;
    }

    .trust-items {
        flex-direction: column;
    }

    .form-wrapper-offset {
        margin-left: 0;
    }

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

@media (max-width: 640px) {
    .hero-content-offset h1 {
        font-size: 32px;
    }

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

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

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