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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

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

.floating-nav {
    position: fixed;
    top: 50px;
    right: 40px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
}

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.nav-links a {
    color: #4a5568;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2d3748;
}

.hero-asymmetric {
    display: flex;
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content-offset {
    width: 45%;
    padding: 120px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.hero-title-large {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 480px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background: #2d3748;
    color: white;
    padding: 18px 42px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #1a202c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 55, 72, 0.3);
}

.hero-image-diagonal {
    position: absolute;
    right: 0;
    top: 15%;
    width: 58%;
    height: 70%;
    overflow: hidden;
    transform: skewY(-3deg);
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image-diagonal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: skewY(3deg) scale(1.1);
}

.intro-overlap {
    display: flex;
    align-items: center;
    padding: 140px 80px;
    position: relative;
    gap: 60px;
}

.intro-text-block {
    width: 50%;
    padding-right: 80px;
    margin-left: 120px;
}

.intro-text-block h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-text-block p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
}

.intro-visual-card {
    width: 40%;
    position: relative;
    margin-top: -80px;
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.intro-visual-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.services-asymmetric {
    padding: 100px 80px 120px;
    background: #f8f9fa;
}

.section-header-offset {
    margin-left: 15%;
    margin-bottom: 80px;
}

.section-header-offset h2 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
}

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

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

.service-card.large-offset {
    width: calc(55% - 20px);
    margin-left: 8%;
}

.service-card.small-top {
    width: calc(38% - 20px);
    margin-top: -60px;
}

.service-card.centered {
    width: calc(48% - 20px);
    margin-left: auto;
    margin-right: auto;
}

.service-card.right-offset {
    width: calc(42% - 20px);
    margin-right: 10%;
    margin-left: auto;
}

.service-card.bottom-left {
    width: calc(50% - 20px);
    margin-left: 5%;
    margin-top: -40px;
}

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

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

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

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

.service-card p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin: 0 30px 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin: 20px 30px;
}

.select-service {
    width: calc(100% - 60px);
    margin: 0 30px 30px;
    padding: 14px;
    background: #2d3748;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #1a202c;
    transform: translateY(-2px);
}

.form-diagonal {
    display: flex;
    padding: 120px 80px;
    background: white;
    position: relative;
    align-items: center;
}

.form-wrapper-asymmetric {
    width: 48%;
    padding-right: 60px;
    margin-left: 80px;
}

.form-wrapper-asymmetric h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-wrapper-asymmetric p {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 40px;
}

.selected-service-display {
    background: #e9ecef;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 16px;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    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: #2d3748;
}

.cta-submit {
    padding: 16px 40px;
    background: #2d3748;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-submit:hover {
    background: #1a202c;
    transform: translateY(-2px);
}

.form-image-overlap {
    position: absolute;
    right: 80px;
    width: 38%;
    height: 520px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
    background-color: #e9ecef;
}

.form-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(2deg) scale(1.1);
}

.trust-section {
    padding: 100px 80px;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
}

.trust-content-irregular {
    margin-left: 12%;
    max-width: 900px;
}

.trust-content-irregular h2 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 60px;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.trust-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 36px 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    margin-left: 0;
}

.trust-item:nth-child(2) {
    margin-left: 80px;
}

.trust-item:nth-child(3) {
    margin-left: 160px;
}

.trust-item h4 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

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

.footer-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 60px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 30px 0;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    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;
    color: #2d3748;
    font-size: 15px;
}

.cookie-content a {
    color: #2d3748;
    text-decoration: underline;
}

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

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

.cookie-accept {
    background: #2d3748;
    color: white;
}

.cookie-accept:hover {
    background: #1a202c;
}

.cookie-reject {
    background: #e2e8f0;
    color: #2d3748;
}

.cookie-reject:hover {
    background: #cbd5e0;
}

@media (max-width: 1024px) {
    .floating-nav {
        position: static;
        width: 100%;
        border-radius: 0;
    }

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

    .hero-content-offset {
        width: 100%;
        padding: 60px 40px;
    }

    .hero-image-diagonal {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
        transform: none;
    }

    .hero-image-diagonal img {
        transform: none;
    }

    .intro-overlap {
        flex-direction: column;
        padding: 80px 40px;
    }

    .intro-text-block {
        width: 100%;
        margin-left: 0;
        padding-right: 0;
    }

    .intro-visual-card {
        width: 100%;
        margin-top: 40px;
    }

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

    .service-card {
        width: 100% !important;
        margin: 0 !important;
    }

    .form-diagonal {
        flex-direction: column;
        padding: 80px 40px;
    }

    .form-wrapper-asymmetric {
        width: 100%;
        margin-left: 0;
        padding-right: 0;
    }

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

    .trust-content-irregular {
        margin-left: 0;
    }

    .trust-item {
        margin-left: 0 !important;
    }

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

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