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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d2d2d;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    border-top: 3px solid #4a90e2;
}

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

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

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4a90e2;
    color: #ffffff;
}

.btn-accept:hover {
    background: #357abd;
}

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

.btn-reject:hover {
    background: #ffffff;
    color: #2d2d2d;
}

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

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

.brand-offset {
    transform: translateX(-10px);
}

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

.nav-split {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.4rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    background: #f9f9f9;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

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

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

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.hero-offset-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.hero-text-block {
    flex: 1;
    max-width: 550px;
    transform: translateY(-40px);
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    transform: translateX(30px) translateY(20px);
}

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

.intro-diagonal {
    padding: 8rem 2rem;
    background: #ffffff;
    position: relative;
}

.diagonal-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 6rem;
    align-items: center;
}

.intro-narrow {
    flex: 1;
    max-width: 480px;
    transform: translateX(40px);
}

.intro-narrow h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-narrow p {
    font-size: 1.15rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.intro-image-offset {
    flex: 1;
    transform: translateY(-60px) translateX(-20px);
}

.intro-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #f8f9fa;
}

.services-staggered {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.services-header-left {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding-left: 8rem;
}

.services-header-left h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.services-header-left p {
    font-size: 1.25rem;
    color: #666;
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    width: calc(50% - 1.25rem);
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

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

.card-offset-2 {
    transform: translateX(-40px) translateY(-30px);
}

.card-offset-3 {
    transform: translateX(60px) translateY(40px);
}

.card-offset-4 {
    transform: translateX(-60px) translateY(-20px);
}

.card-offset-5 {
    transform: translateX(100px) translateY(10px);
}

.card-offset-6 {
    transform: translateX(-80px) translateY(30px);
}

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

.service-visual {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #e9ecef;
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #4a4a4a;
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}

.price-tag {
    padding: 0 1.5rem 1rem;
    font-size: 1.75rem;
    color: #4a90e2;
    font-weight: 700;
}

.btn-select {
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #4a90e2;
    transform: translateY(-2px);
}

.form-section-overlap {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.form-container-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 3rem;
    transform: translateX(-60px) rotate(-1deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-intro {
    margin-bottom: 2rem;
    text-align: left;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.15rem;
    color: #666;
}

.selected-service-notice {
    background: #e8f4f8;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #4a90e2;
}

.selected-service-notice p {
    margin: 0;
    color: #1a1a1a;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1.1rem;
    background: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.trust-irregular {
    padding: 8rem 2rem;
    background: #ffffff;
    display: flex;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.trust-block-left {
    flex: 1;
    max-width: 600px;
    transform: translateY(-40px);
}

.trust-block-left h2 {
    font-size: 2.75rem;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-block-left p {
    font-size: 1.15rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.stats-offset {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    transform: translateX(60px) translateY(40px);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #4a90e2;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 6rem;
    margin-bottom: 3rem;
}

.footer-brand {
    flex: 1;
    max-width: 400px;
    transform: translateX(-20px);
}

.footer-brand h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-brand p {
    color: #b0b0b0;
    line-height: 1.7;
}

.footer-links-offset {
    display: flex;
    gap: 4rem;
    transform: translateX(40px);
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.footer-column a:hover {
    color: #4a90e2;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: #2d2d2d;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #b0b0b0;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #b0b0b0;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .hero-offset-layout,
    .diagonal-container,
    .trust-irregular {
        flex-direction: column;
        gap: 3rem;
    }

    .hero-text-block,
    .intro-narrow,
    .intro-image-offset,
    .trust-block-left,
    .stats-offset {
        transform: none !important;
        max-width: 100%;
    }

    .hero-image-overlap {
        transform: none !important;
    }

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

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

    .form-container-asymmetric {
        transform: none;
    }

    .footer-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-brand,
    .footer-links-offset {
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

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