* {
    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-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 24px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.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-actions {
    display: flex;
    gap: 12px;
}

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

.btn-accept {
    background-color: #007bff;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #0056b3;
}

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

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

.main-nav {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #007bff;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.hero-asymmetric {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #f8f9fa;
}

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

.hero-text-block {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -1px;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 123, 255, 0.3);
}

.hero-image-diagonal {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    background-color: #e0e0e0;
}

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

.intro-overlap {
    max-width: 1400px;
    margin: -60px auto 0;
    padding: 0 40px 80px;
    display: flex;
    gap: 80px;
    position: relative;
    z-index: 20;
}

.intro-card-left {
    flex: 1;
    background-color: #ffffff;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.intro-card-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
}

.intro-card-left p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.stats-column-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
    min-width: 240px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
    padding: 28px;
    border-left: 4px solid #007bff;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-staggered {
    padding: 100px 40px;
    background-color: #ffffff;
}

.section-header-offset {
    max-width: 600px;
    margin-left: 12%;
    margin-bottom: 60px;
}

.section-header-offset h2 {
    font-size: 44px;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header-offset p {
    font-size: 18px;
    color: #666;
}

.service-cards-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 60px;
}

.service-card {
    width: calc(50% - 20px);
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-card.offset-card {
    margin-top: 60px;
}

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

.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-info {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

.price {
    font-size: 32px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 20px;
    display: block;
}

.btn-select {
    padding: 14px 28px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #007bff;
    transform: translateX(4px);
}

.booking-form-diagonal {
    padding: 100px 40px;
    background-color: #f8f9fa;
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.form-container-offset {
    flex: 1;
    max-width: 600px;
    background-color: #ffffff;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-container-offset h2 {
    font-size: 36px;
    margin-bottom: 12px;
    font-weight: 700;
}

.selected-service-display {
    font-size: 16px;
    color: #007bff;
    margin-bottom: 32px;
    font-weight: 600;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #0056b3;
}

.form-image-overlap {
    flex: 1;
    margin-top: -80px;
    background-color: #e0e0e0;
}

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

.trust-section-split {
    display: flex;
    align-items: stretch;
    max-width: 1400px;
    margin: 80px auto;
    gap: 0;
}

.trust-text {
    flex: 1;
    padding: 80px 60px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.trust-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    font-weight: 700;
}

.trust-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0;
}

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

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

.disclaimer-section {
    padding: 60px 40px;
    background-color: #f8f9fa;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background-color: #ffffff;
    border-left: 4px solid #007bff;
}

.disclaimer-text {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

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

.footer-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

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

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

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

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

.footer-col ul li a:hover {
    color: #007bff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

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

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

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

    .hero-image-diagonal {
        position: relative;
        width: 100%;
        height: 400px;
        clip-path: none;
    }

    .intro-overlap {
        flex-direction: column;
        margin-top: 0;
    }

    .service-card {
        width: 100%;
    }

    .service-card.offset-card {
        margin-top: 0;
    }

    .booking-form-diagonal {
        flex-direction: column;
    }

    .form-image-overlap {
        margin-top: 0;
        width: 100%;
    }

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

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