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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    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: 15px;
}

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

.btn-accept {
    background: #4CAF50;
    color: #fff;
}

.btn-accept:hover {
    background: #45a049;
}

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

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

.nav-floating {
    position: sticky;
    top: 20px;
    z-index: 1000;
    margin: 20px auto;
    max-width: 1300px;
    padding: 0 20px;
}

.nav-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 12px;
    background: #f0f0f0;
    border-radius: 20px;
    margin: 0 auto;
}

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

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.hero-asymmetric {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    min-height: 600px;
}

.hero-text-offset {
    flex: 1;
    padding-left: 40px;
    z-index: 2;
}

.hero-text-offset h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-text-offset p {
    font-size: 20px;
    color: #555;
    margin-bottom: 35px;
    max-width: 500px;
}

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

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

.hero-visual-overlap {
    flex: 1;
    position: relative;
    margin-top: -80px;
}

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

.intro-block-irregular {
    max-width: 1300px;
    margin: 120px auto;
    padding: 0 20px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-text-stack {
    flex: 1.2;
}

.intro-text-stack h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-text-stack p {
    font-size: 18px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
}

.intro-visual-card {
    flex: 0.8;
    transform: translateY(40px);
}

.intro-visual-card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #d0d0d0;
}

.services-asymmetric {
    max-width: 1400px;
    margin: 140px auto;
    padding: 0 20px;
}

.section-header-offset {
    margin-bottom: 60px;
    padding-left: 60px;
}

.section-header-offset h2 {
    font-size: 52px;
    color: #1a1a1a;
    font-weight: 800;
}

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

.service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

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

.service-card-medium {
    flex: 1 1 calc(55% - 15px);
}

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

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-content p {
    color: #555;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 12px 28px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #333;
    transform: scale(1.02);
}

.cta-overlap-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    position: relative;
}

.cta-box-offset {
    background: linear-gradient(135deg, #0066cc, #004999);
    color: #fff;
    padding: 60px 80px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.3);
    margin-left: 80px;
    max-width: 700px;
}

.cta-box-offset h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-box-offset p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.trust-section-stacked {
    max-width: 1300px;
    margin: 120px auto;
    padding: 0 20px;
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.trust-content-irregular {
    flex: 1.3;
}

.trust-content-irregular h2 {
    font-size: 44px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 600;
}

.trust-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

.trust-visual-card {
    flex: 0.7;
    transform: translateY(-60px);
}

.trust-visual-card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #d5d5d5;
}

.form-section-asymmetric {
    max-width: 1100px;
    margin: 100px auto;
    padding: 0 20px;
}

.form-container-offset {
    background: #fff;
    padding: 60px 70px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    margin-right: 100px;
}

.form-container-offset h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-container-offset > p {
    font-size: 17px;
    color: #555;
    margin-bottom: 35px;
}

.contact-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: #2c2c2c;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    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: #0066cc;
}

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

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

.disclaimer-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.disclaimer-content {
    background: #f5f5f5;
    padding: 30px 40px;
    border-radius: 12px;
    border-left: 4px solid #0066cc;
}

.disclaimer-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 20px 30px;
    margin-top: 100px;
}

.footer-main {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    color: #bbb;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

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

    .hero-text-offset {
        padding-left: 0;
    }

    .hero-text-offset h1 {
        font-size: 48px;
    }

    .hero-visual-overlap {
        margin-top: 0;
    }

    .intro-block-irregular {
        flex-direction: column;
    }

    .intro-visual-card {
        transform: none;
    }

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

    .trust-visual-card {
        transform: none;
    }

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

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

    .form-container-offset {
        margin-right: 0;
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        border-radius: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

    .section-header-offset {
        padding-left: 0;
    }

    .section-header-offset h2 {
        font-size: 36px;
    }

    .footer-main {
        flex-direction: column;
    }
}

.about-hero-offset {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.about-header-irregular {
    padding-left: 80px;
    max-width: 900px;
}

.about-header-irregular h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 800;
}

.about-header-irregular p {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
}

.story-section-asymmetric {
    max-width: 1300px;
    margin: 120px auto;
    padding: 0 20px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-visual-left {
    flex: 0.9;
}

.story-visual-left img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #d8d8d8;
}

.story-text-right {
    flex: 1.1;
}

.story-text-right h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.story-text-right p {
    font-size: 17px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
}

.values-irregular-grid {
    max-width: 1300px;
    margin: 140px auto;
    padding: 0 20px;
}

.values-header {
    margin-bottom: 60px;
    text-align: center;
}

.values-header h2 {
    font-size: 48px;
    color: #1a1a1a;
    font-weight: 800;
}

.values-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
}

.value-card-offset-1 {
    transform: translateY(-20px);
}

.value-card-offset-2 {
    transform: translateY(20px);
}

.value-card-offset-3 {
    transform: translateY(-10px);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.value-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.team-visual-section {
    max-width: 1300px;
    margin: 120px auto;
    padding: 0 20px;
    display: flex;
    gap: 70px;
    align-items: center;
}

.team-content-stack {
    flex: 1.2;
}

.team-content-stack h2 {
    font-size: 44px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.team-content-stack p {
    font-size: 18px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
}

.cta-inline {
    display: inline-block;
    padding: 14px 32px;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

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

.team-visual-overlap {
    flex: 0.8;
    transform: translateY(40px);
}

.team-visual-overlap img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #d3d3d3;
}

.approach-section-stacked {
    max-width: 1200px;
    margin: 140px auto;
    padding: 0 20px;
}

.approach-header-centered {
    text-align: center;
    margin-bottom: 70px;
}

.approach-header-centered h2 {
    font-size: 50px;
    color: #1a1a1a;
    font-weight: 800;
}

.approach-steps-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.approach-step {
    flex: 1 1 calc(50% - 25px);
    min-width: 300px;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #e0e0e0;
    margin-bottom: 15px;
}

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

.approach-step p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.cta-about-irregular {
    max-width: 1000px;
    margin: 100px auto;
    padding: 0 20px;
}

.cta-about-box {
    background: #1a1a1a;
    color: #fff;
    padding: 70px 80px;
    border-radius: 20px;
    text-align: center;
}

.cta-about-box h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-about-box p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.services-hero {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 800;
}

.services-hero-content p {
    font-size: 20px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    max-width: 1300px;
    margin: 100px auto;
    padding: 0 20px;
}

.service-detail-block {
    display: flex;
    gap: 70px;
    align-items: center;
    margin-bottom: 120px;
}

.service-detail-reverse {
    flex-direction: row-reverse;
}

.service-detail-visual {
    flex: 1;
}

.service-detail-visual img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #dadada;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: #555;
}

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

.service-price-detail {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 25px;
}

.services-cta-section {
    max-width: 1000px;
    margin: 120px auto;
    padding: 0 20px;
}

.services-cta-box {
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: #fff;
    padding: 70px 60px;
    border-radius: 20px;
    text-align: center;
}

.services-cta-box h2 {
    font-size: 40px;
    margin-bottom: 18px;
    font-weight: 700;
}

.services-cta-box p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

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

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

.contact-hero {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 54px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 800;
}

.contact-hero-content p {
    font-size: 19px;
    color: #555;
    max-width: 650px;
    margin: 0 auto;
}

.contact-main-section {
    max-width: 1100px;
    margin: 100px auto;
    padding: 0 20px;
}

.contact-info-offset {
    background: #fff;
    padding: 60px 70px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin-left: 80px;
}

.contact-info-offset h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.thanks-section {
    max-width: 900px;
    margin: 120px auto;
    padding: 0 20px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    text-align: center;
    background: #fff;
    padding: 70px 60px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #4CAF50;
    color: #fff;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.thanks-next-step {
    margin-bottom: 35px;
    font-size: 16px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-thanks-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.btn-thanks-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: #fff;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid #1a1a1a;
    transition: all 0.3s ease;
}

.btn-thanks-secondary:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
}

.legal-page {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.legal-content {
    background: #fff;
    padding: 60px 70px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content .legal-updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 35px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c2c2c;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 18px;
}

.legal-content ul,
.legal-content ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

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