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

:root {
    --primary-color: #d4567f;
    --secondary-color: #f8e8ee;
    --accent-color: #9b3d5c;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --bg-light: #fafafa;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--primary-color);
    color: var(--white);
}

.btn-accept:hover {
    background: var(--accent-color);
}

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

.header-asymmetric {
    padding: 2rem 5%;
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-floating {
    display: flex;
    gap: 2.5rem;
}

.nav-floating a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-floating a:hover {
    color: var(--primary-color);
}

.hero-asymmetric {
    min-height: 90vh;
    padding: 3rem 5%;
    background: var(--bg-light);
}

.hero-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    min-height: 80vh;
}

.hero-image-offset {
    flex: 1;
    position: relative;
    transform: translateY(-40px) translateX(30px);
}

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

.image-overlay {
    position: absolute;
    top: 40px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    border-radius: 8px;
    z-index: -1;
}

.hero-text-float {
    flex: 1;
    transform: translateX(-60px);
}

.hero-title-large {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 86, 127, 0.3);
}

.intro-offset {
    padding: 8rem 5% 6rem;
    background: var(--white);
}

.intro-narrow {
    max-width: 700px;
    margin-left: 15%;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 700;
}

.intro-narrow p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.services-asymmetric {
    padding: 8rem 5%;
    background: var(--bg-light);
}

.services-header-offset {
    max-width: 600px;
    margin-left: 10%;
    margin-bottom: 5rem;
}

.services-header-offset h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 800;
}

.services-header-offset p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.card-large {
    flex: 1 1 calc(60% - 1rem);
    transform: translateY(-30px);
}

.card-offset-top {
    flex: 1 1 calc(40% - 1rem);
    transform: translateY(40px);
}

.card-wide {
    flex: 1 1 100%;
    flex-direction: row;
    transform: translateX(-50px);
}

.card-wide .service-image {
    flex: 1;
}

.card-wide .service-content {
    flex: 1;
}

.card-small {
    flex: 1 1 calc(35% - 1rem);
    transform: translateY(-20px);
}

.card-offset-bottom {
    flex: 1 1 calc(30% - 1rem);
    transform: translateY(60px);
}

.card-medium {
    flex: 1 1 calc(35% - 1rem);
    transform: translateY(20px);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

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

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

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.cta-floating {
    padding: 8rem 5%;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.cta-floating::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-content-offset {
    max-width: 800px;
    margin-left: 20%;
    position: relative;
    z-index: 1;
}

.cta-content-offset h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content-offset p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-button-large {
    display: inline-block;
    padding: 1.3rem 3rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.testimonials-asymmetric {
    padding: 8rem 5%;
    background: var(--white);
}

.testimonials-header {
    max-width: 600px;
    margin-right: 10%;
    margin-left: auto;
    margin-bottom: 5rem;
}

.testimonials-header h2 {
    font-size: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.testimonials-stagger {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial-card {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 8px;
    max-width: 600px;
}

.card-left {
    align-self: flex-start;
    transform: translateX(-40px);
}

.card-right {
    align-self: flex-end;
    transform: translateX(40px);
}

.card-center {
    align-self: center;
}

.testimonial-card p {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.why-us-layered {
    padding: 0;
    position: relative;
    min-height: 700px;
}

.why-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.why-image-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 700px;
    overflow: hidden;
}

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

.why-content-float {
    position: relative;
    z-index: 2;
    background: var(--white);
    max-width: 600px;
    padding: 5rem;
    margin-left: 5%;
    margin-top: 100px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}

.why-content-float h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 700;
}

.why-list {
    list-style: none;
}

.why-list li {
    font-size: 1.2rem;
    color: var(--text-light);
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
}

.why-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.4rem;
}

.form-section-asymmetric {
    padding: 8rem 5%;
    background: var(--bg-light);
}

.form-container-offset {
    max-width: 800px;
    margin-left: 15%;
}

.form-intro {
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.form-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.booking-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 1.3rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.footer-asymmetric {
    background: var(--text-dark);
    color: var(--white);
    padding: 5rem 5% 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-offset-1 {
    transform: translateY(-20px);
}

.footer-offset-2 {
    transform: translateY(20px);
}

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

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta-button {
    display: block;
    padding: 1.2rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(212, 86, 127, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 86, 127, 0.5);
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
        gap: 3rem;
    }

    .hero-image-offset,
    .hero-text-float {
        transform: none;
    }

    .hero-title-large {
        font-size: 3rem;
    }

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

    .service-card,
    .card-large,
    .card-offset-top,
    .card-wide,
    .card-small,
    .card-offset-bottom,
    .card-medium {
        flex: 1 1 100%;
        transform: none;
        flex-direction: column;
    }

    .card-wide {
        flex-direction: column;
    }

    .why-image-bg {
        position: relative;
        width: 100%;
        height: 400px;
    }

    .why-content-float {
        margin: 0;
        margin-top: -100px;
    }

    .intro-narrow,
    .form-container-offset,
    .cta-content-offset {
        margin-left: 0;
        margin-right: 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-offset-1,
    .footer-offset-2,
    .footer-offset-3 {
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        gap: 1.5rem;
    }

    .hero-title-large {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .intro-narrow h2,
    .services-header-offset h2,
    .cta-content-offset h2 {
        font-size: 2rem;
    }

    .testimonial-card {
        max-width: 100%;
    }

    .card-left,
    .card-right {
        transform: none;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta-button {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
}