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

.ad-disclosure {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.nav-floating {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
}

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

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

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

.hero-asymmetric {
    display: flex;
    min-height: 100vh;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    padding: 80px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
}

.hero-title {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    color: #0a0a0a;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.5;
    color: #4a4a4a;
    margin-bottom: 36px;
}

.cta-primary {
    display: inline-block;
    padding: 18px 36px;
    background: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.3);
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-left: -100px;
    margin-top: -40px;
    background-color: #e8f1f8;
}

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

.intro-diagonal {
    display: flex;
    padding: 120px 80px;
    gap: 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    transform: skewY(-2deg);
    margin: -40px 0;
}

.intro-diagonal > * {
    transform: skewY(2deg);
}

.intro-block-left {
    flex: 1.2;
}

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

.intro-block-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #3a3a3a;
}

.intro-stats-right {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.services-offset {
    padding: 100px 80px;
    background: #ffffff;
}

.section-header-creative {
    margin-bottom: 64px;
    margin-left: 120px;
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: #e8f1f8;
    color: #0066cc;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 16px;
}

.section-header-creative h2 {
    font-size: 48px;
    font-weight: 700;
    color: #0a0a0a;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    background-color: #fafbfc;
}

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

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

.service-medium {
    flex: 1 1 calc(50% - 16px);
}

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

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

.service-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #0a0a0a;
    font-weight: 700;
}

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 24px;
    flex-grow: 1;
}

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

.btn-select-service {
    padding: 14px 28px;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #0052a3;
    transform: translateX(4px);
}

.form-section-creative {
    padding: 120px 80px;
    background: #f8f9fa;
    position: relative;
}

.form-container-offset {
    max-width: 700px;
    margin-left: 160px;
    background: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    background-color: #ffffff;
}

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

.form-intro p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.form-notice {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 16px;
    margin-bottom: 24px;
    border-radius: 4px;
}

.form-notice.selected {
    background: #d4edda;
    border-left-color: #28a745;
}

.form-notice p {
    margin: 0;
    font-size: 15px;
    color: #856404;
}

.form-notice.selected p {
    color: #155724;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2a2a2a;
}

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

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

.btn-submit {
    padding: 18px 36px;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.3);
}

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

.trust-section {
    display: flex;
    padding: 100px 80px;
    gap: 80px;
    align-items: center;
}

.trust-content-left {
    flex: 1;
}

.trust-content-left h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #0a0a0a;
    font-weight: 700;
}

.trust-content-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 28px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: transform 0.3s ease;
}

.link-arrow::after {
    content: ' →';
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(4px);
}

.link-arrow:hover::after {
    margin-left: 12px;
}

.trust-image-right {
    flex: 1;
    background-color: #e8f1f8;
}

.trust-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 80px 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

.footer-col a:hover {
    color: #ffffff;
}

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

.disclaimer {
    font-size: 13px;
    line-height: 1.5;
    color: #999999;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #333333;
    text-align: center;
    color: #999999;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2a2a2a;
    color: #ffffff;
    padding: 24px 40px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-content a {
    color: #66aaff;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #0066cc;
    color: #ffffff;
}

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

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

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

.thanks-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f1f8 100%);
}

.thanks-content {
    max-width: 600px;
    background: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    background-color: #ffffff;
}

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

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #0a0a0a;
}

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

.thanks-service {
    background: #e8f1f8;
    padding: 16px;
    border-radius: 8px;
    margin: 24px 0;
    font-weight: 600;
    color: #0066cc;
}

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

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

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

    .hero-image-overlap {
        margin-left: 0;
        margin-top: 0;
        min-height: 400px;
    }

    .intro-diagonal {
        flex-direction: column;
        transform: none;
    }

    .intro-diagonal > * {
        transform: none;
    }

    .services-grid-asymmetric {
        flex-direction: column;
    }

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

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

    .section-header-creative {
        margin-left: 0;
    }

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

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

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        padding: 16px 20px;
    }

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .hero-content-offset {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .intro-diagonal,
    .services-offset,
    .form-section-creative,
    .trust-section,
    .footer {
        padding: 60px 20px;
    }

    .form-container-offset {
        padding: 40px 20px;
    }
}