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

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

.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-content a {
    color: #4a9eff;
    text-decoration: underline;
}

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

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

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

.btn-accept:hover {
    background: #3a8eef;
}

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

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

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #fff;
    position: relative;
    border-bottom: 1px solid #eee;
}

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

.ad-disclosure {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: #666;
    background: #f8f8f8;
    padding: 4px 12px;
    border-radius: 12px;
}

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

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

.nav-links a:hover {
    color: #4a9eff;
}

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 60px;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 540px;
    position: relative;
    z-index: 2;
    padding-left: 40px;
}

.hero-content-offset h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    color: #0a0a0a;
}

.hero-content-offset p {
    font-size: 19px;
    margin-bottom: 32px;
    color: #444;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #4a9eff;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #3a8eef;
    transform: translateY(-2px);
}

.hero-image-overlap {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%) rotate(-3deg);
    width: 52%;
    z-index: 1;
    background: #f0f0f0;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.15);
}

.intro-irregular {
    padding: 120px 60px 100px;
    display: flex;
    gap: 80px;
    align-items: center;
    background: #fafafa;
}

.intro-text-block {
    flex: 1;
    padding-left: 100px;
}

.intro-text-block h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #0a0a0a;
}

.intro-text-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.intro-visual-offset {
    flex: 1;
    position: relative;
    margin-top: -60px;
    background: #e8e8e8;
}

.intro-visual-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transform: rotate(2deg);
}

.services-offset {
    padding: 100px 60px 120px;
    background: #fff;
}

.services-header-left {
    max-width: 500px;
    margin-bottom: 60px;
    padding-left: 80px;
}

.services-header-left h2 {
    font-size: 46px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #0a0a0a;
}

.services-header-left p {
    font-size: 17px;
    color: #666;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 40px;
}

.service-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 0;
    transition: all 0.3s;
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

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

.service-card-2 {
    transform: translateY(30px);
}

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

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

.service-card-5 {
    transform: translateY(-30px);
}

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

.service-image-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f0f0f0;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.service-card:hover .service-image-container img {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #0a0a0a;
    font-weight: 700;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #4a9eff;
    margin: 0 24px 20px;
}

.btn-select {
    margin: 0 24px 24px;
    padding: 14px 28px;
    background: #0a0a0a;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-select:hover {
    background: #4a9eff;
}

.form-section-offset {
    padding: 100px 60px;
    background: #f8f8f8;
}

.form-container-asymmetric {
    max-width: 700px;
    margin: 0 0 0 120px;
    background: #fff;
    padding: 60px;
    border-left: 6px solid #4a9eff;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.06);
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 12px;
    color: #0a0a0a;
    font-weight: 700;
}

.form-intro p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #4a9eff;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 12px;
}

.btn-submit:hover {
    background: #3a8eef;
}

.trust-overlap {
    padding: 120px 60px;
    background: #0a0a0a;
    color: #fff;
    position: relative;
}

.trust-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 50px;
    font-weight: 700;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.tech-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.tech-item:hover {
    background: rgba(74, 158, 255, 0.2);
    border-color: #4a9eff;
}

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

.footer-content {
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

.footer-block h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #fff;
    font-weight: 700;
}

.footer-block p {
    font-size: 14px;
    line-height: 1.7;
}

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

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

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

.footer-block ul li a:hover {
    color: #4a9eff;
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    margin-bottom: 30px;
    font-size: 13px;
    line-height: 1.6;
    color: #aaa;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 13px;
}

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

    .ad-disclosure {
        position: static;
        transform: none;
        margin: 8px 0;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 40px 20px;
        min-height: auto;
    }

    .hero-content-offset {
        padding-left: 0;
        margin-bottom: 40px;
    }

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

    .hero-image-overlap {
        position: static;
        transform: none;
        width: 100%;
        right: 0;
    }

    .intro-irregular {
        flex-direction: column;
        padding: 60px 20px;
        gap: 40px;
    }

    .intro-text-block {
        padding-left: 0;
    }

    .intro-visual-offset {
        margin-top: 0;
    }

    .services-offset {
        padding: 60px 20px;
    }

    .services-header-left {
        padding-left: 0;
    }

    .services-grid-irregular {
        padding: 0;
    }

    .service-card {
        transform: none !important;
        flex: 1 1 100%;
    }

    .form-section-offset {
        padding: 60px 20px;
    }

    .form-container-asymmetric {
        margin: 0;
        padding: 30px 20px;
    }

    .trust-overlap {
        padding: 60px 20px;
    }

    .footer-asymmetric {
        padding: 40px 20px 20px;
    }

    .footer-content {
        gap: 40px;
    }
}