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

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

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

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

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

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 60px 5%;
    overflow: hidden;
}

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

.hero-content-offset h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-content-offset p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: #4a4a4a;
    line-height: 1.8;
}

.hero-image-layer {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%) rotate(-3deg);
    width: 60%;
    height: 75%;
    z-index: 1;
    background-color: #e8f4f8;
}

.hero-image-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: -20px 20px 60px rgba(0,0,0,0.15);
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 4px;
}

.cta-primary:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.intro-offset {
    display: flex;
    align-items: center;
    padding: 100px 5%;
    gap: 80px;
    background: #f8f9fa;
}

.intro-left {
    flex: 0 0 45%;
    transform: translateX(-40px);
    background-color: #d4e6f1;
}

.intro-left img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 20px 20px 0 rgba(52, 152, 219, 0.2);
}

.intro-right {
    flex: 1;
    padding-right: 5%;
}

.intro-right h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-right p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.services-asymmetric {
    padding: 120px 5% 100px;
    background: white;
}

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

.section-header-offset h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-header-offset p {
    font-size: 1.2rem;
    color: #666;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 0;
    width: calc(33.333% - 30px);
    min-width: 320px;
    transition: all 0.3s;
    background-color: #f8f9fa;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 25px 25px 15px;
    color: #2c3e50;
}

.service-card p {
    margin: 0 25px 15px;
    color: #555;
    font-size: 0.95rem;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin: 20px 25px 25px;
}

.service-card .select-service {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 12px;
    background: #2c3e50;
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.service-card .select-service:hover {
    background: #34495e;
    transform: translateY(-2px);
}

.service-card .select-service:active {
    transform: translateY(0);
}

.offset-up {
    transform: translateY(-30px);
}

.offset-down {
    transform: translateY(40px);
}

.offset-center {
    transform: translateY(10px);
}

.offset-right {
    transform: translateX(20px) translateY(-20px);
}

.offset-left {
    transform: translateX(-20px) translateY(25px);
}

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

.booking-section-overlay {
    padding: 100px 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.booking-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transform: rotate(-1deg);
}

.booking-container h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
    transform: rotate(1deg);
}

.selected-service-display {
    background: #e8f4f8;
    padding: 15px;
    margin-bottom: 30px;
    border-left: 4px solid #3498db;
    font-weight: 600;
    color: #2c3e50;
}

.booking-form {
    transform: rotate(1deg);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #2c3e50;
    color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #34495e;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

.trust-section {
    padding: 100px 5%;
    background: #f8f9fa;
}

.trust-content h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 70px;
    color: #2c3e50;
}

.testimonials-irregular {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: white;
    padding: 40px;
    border-left: 5px solid #3498db;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.testimonial p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial span {
    color: #666;
    font-weight: 600;
}

.offset-1 {
    margin-left: 5%;
    max-width: 70%;
}

.offset-2 {
    margin-left: auto;
    margin-right: 5%;
    max-width: 75%;
}

.offset-3 {
    margin-left: 10%;
    max-width: 65%;
}

.info-asymmetric {
    display: flex;
    align-items: center;
    padding: 100px 5%;
    gap: 60px;
    background: white;
}

.info-block {
    flex: 1;
    padding-left: 5%;
}

.info-block h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.info-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.info-image {
    flex: 0 0 40%;
    transform: translateY(40px) rotate(2deg);
    background-color: #d4e6f1;
}

.info-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    box-shadow: -15px 15px 40px rgba(0,0,0,0.15);
}

.disclaimer-section {
    padding: 60px 5%;
    background: #ecf0f1;
}

.disclaimer {
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.9rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

.main-footer {
    background: #2c3e50;
    color: white;
    padding: 60px 5% 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-section a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    padding: 25px 5%;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    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 {
    color: white;
    flex: 1;
    margin: 0;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.cookie-btn.reject {
    background: #95a5a6;
    color: white;
}

.cookie-btn.reject:hover {
    background: #7f8c8d;
}

@media (max-width: 968px) {
    .hero-content-offset h1 {
        font-size: 2.5rem;
    }

    .hero-image-layer {
        width: 70%;
        right: -15%;
    }

    .intro-offset {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .service-card {
        width: 100%;
        transform: none !important;
    }

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

    .info-image {
        width: 100%;
        transform: none;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .testimonials-irregular .testimonial {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }
}