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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

.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: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    background: #d4af37;
    color: #1a1a1a;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie:hover {
    background: #e6c558;
}

.btn-cookie.btn-secondary {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-cookie.btn-secondary:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    background: #f9f9f9;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: #f8f8f8;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    background: #2c2c2c;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #d4af37;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.split-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 70vh;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem;
    background: #ffffff;
}

.split-content h2 {
    font-size: 2.75rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.split-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.split-image {
    flex: 1;
    background: #e0e0e0;
    overflow: hidden;
}

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

.cta-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 1rem;
}

.cta-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    background: #fafafa;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-center h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header-center p {
    font-size: 1.15rem;
    color: #666;
}

.grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 0 0 calc(33.333% - 1.5rem);
    background: #ffffff;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

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

.card-image {
    width: 100%;
    height: 260px;
    background: #e0e0e0;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 1.5rem;
    padding: 1.5rem 1.5rem 0.75rem;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 1.5rem;
    color: #4a4a4a;
    line-height: 1.6;
    flex-grow: 1;
}

.price-tag {
    padding: 1rem 1.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: #d4af37;
}

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

.btn-select:hover {
    background: #d4af37;
    color: #1a1a1a;
}

.form-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    background: #ffffff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #1a1a1a;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group select {
    padding: 0.875rem;
    border: 1px solid #d0d0d0;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input[readonly] {
    background: #f5f5f5;
    color: #1a1a1a;
    font-weight: 600;
}

.btn-submit {
    padding: 1.125rem 2rem;
    background: #d4af37;
    color: #1a1a1a;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.disclaimer-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: #f0f0f0;
}

.disclaimer-content {
    padding: 2rem;
    border-left: 4px solid #d4af37;
    background: #ffffff;
}

.disclaimer-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.main-footer {
    background: #2c2c2c;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    margin-bottom: 1.25rem;
    color: #d4af37;
}

.footer-column a {
    display: block;
    color: #d0d0d0;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #d4af37;
}

.footer-column p {
    color: #d0d0d0;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
}

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

    .split-section,
    .split-section.reverse {
        flex-direction: column;
    }

    .service-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-left h1 {
        font-size: 2.5rem;
    }

    .service-card {
        flex: 0 0 100%;
    }

    .split-content,
    .hero-left {
        padding: 3rem 2rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}