* {
    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: #2c3e50;
    background-color: #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: 12px;
}

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

.btn-cookie.accept {
    background: #27ae60;
    color: #fff;
}

.btn-cookie.accept:hover {
    background: #229954;
}

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

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

.ad-notice {
    background: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.nav-floating {
    position: fixed;
    top: 30px;
    right: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 28px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: #2c3e50;
}

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

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

.nav-links a:hover {
    color: #3498db;
}

.hero-asymmetric {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    padding: 80px 60px;
    max-width: 600px;
    margin-left: 8%;
}

.hero-text-block {
    background: rgba(255, 255, 255, 0.98);
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: rotate(-2deg);
}

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

.hero-text-block p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a5568;
}

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

.cta-primary:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(3deg);
    width: 55%;
    height: 75%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
}

.intro-offset {
    padding: 140px 60px;
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-narrow {
    flex: 1;
    padding-left: 12%;
}

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

.intro-narrow p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.intro-visual-float {
    flex: 0.8;
    position: relative;
    transform: translateY(-40px) rotate(-4deg);
}

.intro-visual-float img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: #e0e7ef;
}

.services-asymmetric {
    padding: 100px 60px 140px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.section-header-diagonal {
    transform: translateX(15%) rotate(-1deg);
    margin-bottom: 80px;
}

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

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
    align-items: flex-start;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    flex: 1;
    min-width: 320px;
    max-width: 480px;
}

.service-card.offset-top {
    transform: translateY(-30px) rotate(1deg);
}

.service-card.offset-bottom {
    transform: translateY(30px) rotate(-1.5deg);
}

.service-card.offset-left {
    transform: translateX(-20px) rotate(0.8deg);
}

.service-card.offset-right {
    transform: translateX(20px) rotate(-1.2deg);
}

.service-card.offset-center {
    transform: scale(1.05) rotate(-0.5deg);
}

.service-card.offset-diagonal {
    transform: translate(15px, -20px) rotate(2deg);
}

.service-card:hover {
    transform: translateY(-8px) rotate(0deg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

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

.service-image img {
    width: 100%;
    height: 100%;
}

.service-info {
    padding: 32px;
}

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

.service-info p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #6c757d;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.btn-select-service.selected {
    background: #27ae60;
}

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

.form-container-asymmetric {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    transform: rotate(-1deg);
}

.form-header-offset {
    margin-bottom: 40px;
    transform: translateX(-10px);
}

.form-header-offset h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.form-header-offset p {
    font-size: 16px;
    color: #6c757d;
}

.form-notice {
    background: #fff3cd;
    color: #856404;
    padding: 12px 20px;
    border-radius: 6px;
    margin-bottom: 24px;
    font-size: 14px;
    text-align: center;
}

.form-notice.hidden {
    display: none;
}

.selected-service-display {
    background: #d4edda;
    color: #155724;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-weight: 600;
    display: none;
}

.selected-service-display.show {
    display: block;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.trust-diagonal {
    padding: 120px 60px;
    background: #f8f9fa;
    transform: skewY(-2deg);
    margin: 80px 0;
}

.trust-content {
    transform: skewY(2deg);
    max-width: 1400px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: #1a1a1a;
}

.testimonials-asymmetric {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial.offset-a {
    transform: rotate(-2deg);
}

.testimonial.offset-b {
    transform: translateY(30px) rotate(1.5deg);
}

.testimonial.offset-c {
    transform: translateY(-20px) rotate(-1deg);
}

.testimonial p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a5568;
    font-style: italic;
}

.testimonial cite {
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
    font-style: normal;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 60px 40px;
}

.footer-content {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 60px;
    flex-wrap: wrap;
}

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

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

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

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

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

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

.footer-block ul li a:hover {
    color: #667eea;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #ccc;
}

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

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

@media (max-width: 1024px) {
    .nav-floating {
        top: 20px;
        right: 20px;
        flex-direction: column;
        gap: 20px;
    }

    .hero-content-offset {
        margin-left: 0;
        padding: 60px 30px;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 400px;
        transform: none;
        margin-top: 40px;
    }

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

    .intro-narrow {
        padding-left: 0;
    }

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

    .service-card {
        max-width: 100%;
    }
}

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

    .section-header-diagonal {
        transform: none;
    }

    .section-header-diagonal h2 {
        font-size: 38px;
    }

    .form-container-asymmetric {
        padding: 40px 30px;
        transform: none;
    }

    .testimonials-asymmetric {
        flex-direction: column;
    }

    .testimonial {
        transform: none !important;
    }
}