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

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    z-index: 9999;
    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: 20px;
}

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

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

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

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

.btn-accept {
    background: #d4a574;
    color: white;
}

.btn-accept:hover {
    background: #c49564;
}

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

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

.main-header {
    background: #1a1a1a;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ad-disclosure {
    background: #d4a574;
    color: #1a1a1a;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    font-weight: 600;
}

.header-content {
    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;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #d4a574;
}

.hero-split {
    display: flex;
    min-height: 90vh;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    background: #f8f6f3;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.cta-primary {
    display: inline-block;
    background: #1a1a1a;
    color: white;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #d4a574;
    transform: translateY(-2px);
}

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

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

.philosophy-section {
    padding: 100px 40px;
    background: white;
}

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.content-left,
.content-right {
    flex: 1;
}

.content-left-wide {
    flex: 1.3;
}

.content-right-narrow {
    flex: 0.7;
}

.content-right h2,
.content-left h2,
.content-left-wide h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.3;
}

.content-right p,
.content-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.content-left img {
    border-radius: 8px;
}

.services-showcase {
    padding: 100px 40px;
    background: #f8f6f3;
}

.services-showcase h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    width: 380px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-image img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    padding: 24px 24px 12px;
    font-size: 24px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 24px;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
}

.service-price {
    padding: 16px 24px;
    font-size: 32px;
    font-weight: 700;
    color: #d4a574;
}

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

.btn-select:hover {
    background: #d4a574;
}

.booking-section {
    padding: 100px 40px;
    background: white;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
}

.booking-form input,
.booking-form textarea {
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #d4a574;
}

.service-display {
    padding: 20px;
    background: #f8f6f3;
    border-radius: 4px;
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-display.selected {
    background: #d4a574;
    color: white;
}

.btn-submit {
    padding: 18px 36px;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.experience-section {
    padding: 100px 40px;
    background: #1a1a1a;
    color: white;
}

.centered-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.centered-content h2 {
    font-size: 44px;
    margin-bottom: 32px;
    color: white;
}

.centered-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #d0d0d0;
}

.main-footer {
    background: #0f0f0f;
    color: #b0b0b0;
    padding: 60px 40px 30px;
}

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

.footer-section h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-section a {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #d4a574;
}

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

.footer-bottom p {
    font-size: 13px;
    margin-bottom: 12px;
}

.disclaimer {
    color: #808080;
    font-size: 12px;
    font-style: italic;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: #f8f6f3;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.thanks-content h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.thanks-content .service-info {
    background: #d4a574;
    color: white;
    padding: 20px;
    border-radius: 4px;
    margin: 30px 0;
    font-weight: 600;
}

.page-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
}

.page-content h1 {
    font-size: 44px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.page-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

.page-content h3 {
    font-size: 22px;
    margin: 32px 0 16px;
    color: #2a2a2a;
}

.page-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.page-content ul,
.page-content ol {
    margin: 20px 0 20px 24px;
}

.page-content li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #4a4a4a;
}

.contact-grid {
    max-width: 1200px;
    margin: 60px auto;
    display: flex;
    gap: 60px;
}

.contact-info,
.contact-location {
    flex: 1;
}

.contact-info h2,
.contact-location h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.info-item {
    margin-bottom: 24px;
}

.info-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.info-item p {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.6;
}

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

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

    .services-grid {
        justify-content: center;
    }

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

    .contact-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .hero-left {
        padding: 60px 30px;
    }

    .services-showcase h2,
    .centered-content h2 {
        font-size: 32px;
    }

    .service-card {
        width: 100%;
        max-width: 400px;
    }
}