* {
    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: #1a1a1a;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

.cookie-actions {
    display: flex;
    gap: 10px;
}

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

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

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

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

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

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-disclaimer {
    flex: 1;
    text-align: center;
}

.ad-label {
    font-size: 12px;
    color: #666;
    background-color: #f5f5f5;
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-block;
}

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

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

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

.hero-asymmetric {
    display: flex;
    min-height: 600px;
    align-items: center;
    padding: 60px 5%;
    gap: 60px;
    background-color: #f9f9f9;
}

.hero-text-block {
    flex: 1;
    max-width: 600px;
}

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

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

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

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

.hero-visual-offset {
    flex: 1;
    position: relative;
    margin-top: -40px;
    background-color: #e8e8e8;
}

.hero-visual-offset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-offset {
    padding: 100px 5%;
    display: flex;
    gap: 80px;
    align-items: flex-start;
    background-color: #ffffff;
}

.intro-narrow {
    flex: 2;
    max-width: 700px;
}

.intro-narrow h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.intro-stat-overlay {
    flex: 1;
    margin-top: 60px;
}

.stat-card {
    background-color: #0066cc;
    color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.stat-label {
    font-size: 16px;
    line-height: 1.4;
}

.services-preview {
    padding: 100px 5%;
    background-color: #fafafa;
}

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

.services-intro-left h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-intro-left p {
    font-size: 18px;
    line-height: 1.6;
    color: #4a4a4a;
}

.services-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    max-width: 900px;
}

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

.service-card.offset-1 {
    margin-left: 0;
}

.service-card.offset-2 {
    margin-left: 10%;
}

.service-card.offset-3 {
    margin-left: 5%;
}

.service-card.offset-4 {
    margin-left: 15%;
}

.service-card.offset-5 {
    margin-left: 8%;
}

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

.service-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 24px 24px 16px 24px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 24px 20px 24px;
    color: #4a4a4a;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    margin: 0 24px 20px 24px;
    display: block;
}

.cta-service {
    margin: 0 24px 24px 24px;
    padding: 14px 28px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-service:hover {
    background-color: #0066cc;
    transform: translateX(4px);
}

.testimonial-inline {
    padding: 80px 5%;
    background-color: #f0f4f8;
}

.testimonial-inline blockquote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-inline p {
    font-size: 24px;
    line-height: 1.6;
    color: #1a1a1a;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-inline cite {
    font-size: 16px;
    color: #666;
    font-style: normal;
}

.trust-section-irregular {
    padding: 100px 5%;
    display: flex;
    gap: 60px;
    align-items: center;
    background-color: #ffffff;
}

.trust-text {
    flex: 1.2;
}

.trust-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.trust-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.trust-image-overlap {
    flex: 1;
    margin-top: -80px;
    background-color: #e8e8e8;
}

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

.approach-stacked {
    padding: 100px 5%;
    background-color: #fafafa;
}

.approach-stacked h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.approach-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.phase-number {
    font-size: 72px;
    font-weight: 800;
    color: #e0e0e0;
    line-height: 1;
}

.approach-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.cta-section-offset {
    padding: 80px 5%;
    background-color: #ffffff;
}

.cta-box {
    max-width: 700px;
    margin-left: 15%;
    background-color: #0066cc;
    color: #ffffff;
    padding: 60px;
    border-radius: 8px;
}

.cta-box h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 28px;
}

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

.cta-secondary:hover {
    background-color: #f0f0f0;
}

.form-section {
    padding: 100px 5%;
    background-color: #f9f9f9;
}

.form-container-asymmetric {
    max-width: 700px;
    margin-left: 10%;
}

.form-intro {
    margin-bottom: 40px;
}

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

.form-intro p {
    font-size: 17px;
    color: #4a4a4a;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

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

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

.disclaimer-section {
    padding: 60px 5%;
    background-color: #f5f5f5;
}

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

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 5% 30px 5%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    color: #b0b0b0;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 8px;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #b0b0b0;
}

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

    .hero-text-block h1 {
        font-size: 36px;
    }

    .hero-visual-offset {
        margin-top: 0;
        width: 100%;
        height: 300px;
    }

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

    .intro-stat-overlay {
        margin-top: 0;
    }

    .service-card.offset-1,
    .service-card.offset-2,
    .service-card.offset-3,
    .service-card.offset-4,
    .service-card.offset-5 {
        margin-left: 0;
    }

    .trust-section-irregular {
        flex-direction: column;
    }

    .trust-image-overlap {
        margin-top: 0;
        width: 100%;
        height: 300px;
    }

    .cta-box {
        margin-left: 0;
    }

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

    .nav-links {
        width: 100%;
        justify-content: center;
    }
}
