* {
    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;
    overflow-x: hidden;
}

.ad-disclosure {
    background: #f8f8f8;
    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;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

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

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

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

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 60px 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.hero-content-offset {
    flex: 1;
    max-width: 550px;
    padding-right: 80px;
    z-index: 2;
}

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

.hero-content-offset p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #4a4a4a;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 18px 40px;
    background: #0066cc;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 8px;
    transition: all 0.3s;
}

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

.hero-image-overlap {
    position: absolute;
    right: -100px;
    top: 20%;
    width: 700px;
    height: 500px;
    background: #e8eef5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(-3deg);
}

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

.intro-offset {
    padding: 120px 60px;
    display: flex;
    gap: 80px;
    align-items: center;
    background: white;
}

.intro-text-narrow {
    flex: 1;
    max-width: 480px;
    margin-left: 120px;
}

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

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

.intro-visual-card {
    position: relative;
    width: 450px;
    height: 350px;
    background: #f0f4f8;
    border-radius: 16px;
    overflow: hidden;
    transform: translateY(40px);
}

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

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    font-size: 20px;
    font-weight: 600;
}

.services-asymmetric {
    padding: 100px 60px;
    background: #fafbfc;
}

.services-header-offset {
    margin-left: 80px;
    margin-bottom: 70px;
}

.services-header-offset h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #0a0a0a;
}

.services-header-offset p {
    font-size: 20px;
    color: #666;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card.large {
    width: calc(60% - 15px);
}

.service-card.medium {
    width: calc(40% - 15px);
}

.service-card.small {
    width: calc(33.333% - 20px);
}

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

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #e8eef5;
}

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

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

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

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

.service-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    flex: 1;
}

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

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

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

.form-section-offset {
    padding: 120px 60px;
    display: flex;
    gap: 100px;
    align-items: flex-start;
    background: white;
}

.form-container {
    flex: 1;
    max-width: 600px;
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #0a0a0a;
}

.form-intro p {
    font-size: 17px;
    color: #666;
}

.selected-service-display {
    background: #f0f8ff;
    border-left: 4px solid #0066cc;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 6px;
}

.selected-service-display p {
    margin: 0;
    color: #666;
}

.selected-service-display.active {
    background: #e6f4ea;
    border-left-color: #34a853;
}

.selected-service-display.active p {
    color: #0a0a0a;
    font-weight: 600;
}

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

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

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.btn-submit {
    padding: 16px 40px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

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

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

.form-visual {
    width: 450px;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    background: #e8eef5;
    margin-top: 80px;
    transform: rotate(2deg);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

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

.trust-section {
    padding: 100px 200px;
    background: #f5f7fa;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #0a0a0a;
}

.trust-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.disclaimer-box {
    background: white;
    padding: 30px;
    border-left: 4px solid #ffb300;
    border-radius: 8px;
    margin-top: 40px;
}

.disclaimer-box p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.footer-asymmetric {
    background: #0a0a0a;
    color: white;
    padding: 80px 60px 30px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
}

.footer-col p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.7;
}

.footer-col a {
    color: #aaa;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.email-text {
    color: #aaa;
    cursor: default;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 30px;
    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;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

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

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

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

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

.btn-reject {
    background: #f0f0f0;
    color: #333;
}

.btn-reject:hover {
    background: #e0e0e0;
}

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 60px 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

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

.thanks-content p {
    font-size: 20px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

.thanks-details {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.thanks-details p {
    font-size: 16px;
    margin-bottom: 10px;
}

.legal-page {
    padding: 140px 60px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #0a0a0a;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #0a0a0a;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #333;
}

.legal-page p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

@media (max-width: 1200px) {
    .hero-image-overlap {
        width: 550px;
        height: 400px;
        right: -50px;
    }

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

    .service-card.large,
    .service-card.medium,
    .service-card.small {
        width: 100%;
    }
}

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

    .hero-asymmetric {
        flex-direction: column;
        padding: 120px 20px 40px;
    }

    .hero-content-offset {
        padding-right: 0;
        max-width: 100%;
    }

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

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

    .intro-offset {
        flex-direction: column;
        padding: 60px 20px;
    }

    .intro-text-narrow {
        margin-left: 0;
        max-width: 100%;
    }

    .intro-visual-card {
        width: 100%;
        transform: none;
    }

    .form-section-offset {
        flex-direction: column;
        padding: 60px 20px;
        gap: 40px;
    }

    .form-visual {
        width: 100%;
        transform: none;
        margin-top: 0;
    }

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

    .footer-main {
        flex-direction: column;
        gap: 30px;
    }

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