* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: #0066cc;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #0052a3;
}

.cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.header-asymmetric {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-offset {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
}

.ad-disclosure {
    font-size: 11px;
    color: #666666;
    font-style: italic;
}

.nav-split {
    display: flex;
    gap: 32px;
}

.nav-split a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-content-left {
    flex: 1;
    padding-left: 40px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 32px;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #0066cc;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.hero-image-offset {
    flex: 1;
    position: relative;
    margin-top: -40px;
}

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

.intro-overlap {
    max-width: 1400px;
    margin: -60px auto 80px;
    padding: 0 40px;
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 10;
}

.intro-card {
    flex: 1.5;
    background: #f8f9fa;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.intro-card h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.intro-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.stats-offset {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 60px;
}

.stat-block {
    background: #0066cc;
    color: #ffffff;
    padding: 28px 32px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
}

.stat-label {
    font-size: 15px;
    opacity: 0.9;
}

.services-irregular {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.section-title-offset {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 60px;
    padding-left: 60px;
    color: #1a1a1a;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.service-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-large {
    flex: 1 1 calc(60% - 12px);
}

.service-small {
    flex: 1 1 calc(40% - 12px);
}

.service-medium {
    flex: 1 1 calc(50% - 12px);
}

.service-wide {
    flex: 1 1 100%;
    flex-direction: row;
}

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

.service-wide .service-content {
    width: 50%;
}

.service-vertical {
    flex: 1 1 calc(33.333% - 16px);
}

.service-accent {
    flex: 1 1 calc(66.666% - 16px);
    background: #f0f7ff;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e5e5e5;
}

.service-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.service-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    flex: 1;
}

.price-tag {
    font-size: 22px;
    font-weight: 700;
    color: #0066cc;
    margin-top: 8px;
}

.cta-service {
    padding: 12px 28px;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.cta-service:hover {
    background: #0052a3;
    transform: translateX(4px);
}

.testimonials-offset {
    background: #1a1a1a;
    color: #ffffff;
    padding: 100px 40px;
    margin: 80px 0;
    transform: skewY(-2deg);
}

.testimonials-wrapper {
    transform: skewY(2deg);
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-wrapper h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
}

.testimonial-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 36px;
    border-radius: 8px;
    flex: 1 1 calc(33.333% - 22px);
    min-width: 280px;
}

.testimonial-large {
    flex: 1 1 calc(50% - 16px);
    background: rgba(0, 102, 204, 0.2);
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    opacity: 0.8;
}

.form-section-split {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.form-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e5e5e5;
}

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

.form-container {
    flex: 1;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-container > p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background: #e9ecef;
    cursor: not-allowed;
}

.cta-submit {
    width: 100%;
    padding: 16px;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-submit:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.values-overlap {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 30px;
}

.value-block {
    flex: 1;
    background: #ffffff;
    padding: 40px 32px;
    border-left: 4px solid #0066cc;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.value-elevated {
    margin-top: -30px;
    background: #f0f7ff;
}

.value-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.value-block p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 40px 30px;
    margin-top: 100px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 1 1 300px;
}

.footer-brand h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #0066cc;
}

.footer-brand p {
    font-size: 15px;
    opacity: 0.8;
}

.footer-links,
.footer-legal {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4,
.footer-legal h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #ffffff;
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    flex: 1 1 100%;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 12px;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #0066cc;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.thanks-container .cta-primary {
    margin-top: 32px;
}

.content-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

.content-page h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.content-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.content-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.content-page ul,
.content-page ol {
    margin: 20px 0 20px 32px;
}

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

.content-page a {
    color: #0066cc;
    text-decoration: underline;
}

.contact-content {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e5e5e5;
}

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

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-image-offset {
        margin-top: 40px;
    }

    .intro-overlap {
        flex-direction: column;
    }

    .stats-offset {
        margin-top: 0;
    }

    .services-grid-asymmetric .service-card {
        flex: 1 1 100%;
    }

    .service-wide {
        flex-direction: column;
    }

    .service-wide img,
    .service-wide .service-content {
        width: 100%;
    }

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

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

    .value-elevated {
        margin-top: 0;
    }

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

@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .nav-split {
        gap: 20px;
    }

    .hero-title {
        font-size: 38px;
    }

    .section-title-offset {
        font-size: 34px;
        padding-left: 0;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }
}