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

:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #e94560;
    --light: #f1f1f1;
    --text: #333;
    --text-light: #666;
    --bg-fallback: #2a2a3e;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #ffeeba;
}

.floating-nav {
    position: fixed;
    top: 50px;
    right: 40px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

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

.hero-content-offset {
    width: 45%;
    z-index: 10;
    padding-right: 40px;
}

.hero-content-offset h1 {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-content-offset p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 480px;
}

.cta-hero {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 69, 96, 0.3);
}

.hero-image-overlap {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%) rotate(-5deg);
    width: 60%;
    background-color: var(--bg-fallback);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

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

.intro-offset {
    padding: 120px 60px;
    display: flex;
    gap: 80px;
    align-items: center;
    background-color: var(--light);
}

.intro-narrow {
    width: 50%;
    padding-left: 120px;
}

.intro-narrow h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

.intro-narrow p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-wide-image {
    width: 50%;
    background-color: var(--bg-fallback);
    border-radius: 8px;
    overflow: hidden;
    transform: translateX(40px);
}

.intro-wide-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-asymmetric {
    padding: 140px 60px 100px;
    background-color: white;
    position: relative;
}

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

.services-header-left h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.services-header-left p {
    font-size: 18px;
    color: var(--text-light);
}

.service-card {
    display: flex;
    margin-bottom: 60px;
    gap: 40px;
    align-items: center;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.card-offset-1 {
    margin-left: 80px;
    margin-right: 20%;
}

.card-offset-2 {
    margin-left: 20%;
    margin-right: 80px;
}

.card-offset-3 {
    margin-left: 120px;
    margin-right: 15%;
}

.card-offset-4 {
    margin-left: 10%;
    margin-right: 120px;
}

.card-offset-5 {
    margin-left: 160px;
    margin-right: 10%;
}

.card-offset-6 {
    margin-left: 15%;
    margin-right: 100px;
}

.service-visual {
    width: 45%;
    background-color: var(--bg-fallback);
}

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

.service-info {
    width: 55%;
    padding: 30px 40px 30px 0;
}

.service-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-info p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

.service-select {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.service-select:hover {
    background-color: var(--secondary);
    transform: translateX(4px);
}

.form-section-diagonal {
    padding: 120px 60px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    position: relative;
    transform: skewY(-2deg);
    margin: 100px 0;
}

.form-container-offset {
    transform: skewY(2deg);
    max-width: 600px;
    margin-left: 15%;
    background-color: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-container-offset h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.form-container-offset > p {
    color: var(--text-light);
    margin-bottom: 32px;
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

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

.submit-btn {
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.trust-section-overlap {
    padding: 100px 60px;
    background-color: var(--light);
}

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

.trust-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 60px;
}

.trust-points {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.trust-item {
    flex: 1;
    text-align: left;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.trust-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.footer-asymmetric {
    background-color: var(--primary);
    color: white;
    padding: 80px 60px 40px;
}

.footer-main {
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
    padding-left: 60px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 46, 0.98);
    color: white;
    padding: 24px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.2s;
}

.cookie-accept {
    background-color: var(--accent);
    color: white;
}

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

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
    background-color: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.thanks-content a {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s;
}

.thanks-content a:hover {
    transform: translateY(-2px);
}

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

    .hero-content-offset {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

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

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

    .intro-narrow,
    .intro-wide-image {
        width: 100%;
        padding-left: 0;
        transform: none;
    }

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

    .service-visual,
    .service-info {
        width: 100%;
        padding: 20px;
    }

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

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

    .trust-points {
        flex-direction: column;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
        padding-left: 0;
    }

    .floating-nav {
        top: 20px;
        right: 20px;
        padding: 15px 20px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}