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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
}

.main-nav {
    background-color: #1a1a1a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f4f4f4;
    letter-spacing: 0.5px;
}

.nav-ad-notice {
    font-size: 0.75rem;
    color: #999;
    padding: 0.3rem 0.8rem;
    border: 1px solid #444;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: #f8f8f8;
}

.hero-left {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 50%;
}

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

.hero-left p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-right {
    flex: 1;
    max-width: 50%;
    background-color: #d4a574;
}

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

.btn-primary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: transparent;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    transition: all 0.3s;
    cursor: pointer;
}

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

.services-preview {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

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

.split-visual {
    flex: 1;
    background-color: #e8e8e8;
}

.split-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-content {
    flex: 1;
    padding: 2rem;
}

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

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-quick-list {
    margin: 2rem 0;
}

.quick-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.quick-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c2c2c;
}

.quick-item .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d4a574;
}

.about-preview {
    padding: 5rem 2rem;
    background-color: #f4f4f4;
}

.link-inline {
    color: #1a1a1a;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s;
}

.link-inline:hover {
    color: #d4a574;
}

.booking-section {
    padding: 5rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
}

.booking-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.booking-intro {
    flex: 1;
    padding: 2rem;
}

.booking-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.booking-intro p {
    font-size: 1.1rem;
    color: #ccc;
}

.booking-form-container {
    flex: 1;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
}

.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonials {
    padding: 5rem 2rem;
    background-color: #f8f8f8;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.testimonial-card p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
}

.main-footer {
    background-color: #1a1a1a;
    color: #f4f4f4;
    padding: 3rem 2rem 1rem;
}

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

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #d4a574;
}

.footer-section p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #252525;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 2000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie {
    background-color: #d4a574;
    color: #1a1a1a;
}

.btn-cookie:hover {
    background-color: #c09463;
}

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

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

.page-header {
    padding: 4rem 2rem;
    background-color: #f8f8f8;
}

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

.header-content {
    flex: 1;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.header-content p {
    font-size: 1.15rem;
    color: #555;
}

.header-visual {
    flex: 1;
    background-color: #e0e0e0;
}

.header-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-row {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #e8e8e8;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 1.5rem;
}

.service-info p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: 700;
}

.services-cta {
    padding: 4rem 2rem;
    background-color: #1a1a1a;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.about-hero {
    padding: 4rem 2rem;
    background-color: #f4f4f4;
}

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

.about-text {
    flex: 1;
}

.about-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-text p {
    font-size: 1.2rem;
    color: #555;
}

.about-image {
    flex: 1;
    background-color: #d4a574;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

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

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.story-image {
    flex: 1;
    background-color: #e0e0e0;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #f8f8f8;
    text-align: center;
}

.values-section h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.team-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.team-visual {
    flex: 1;
    background-color: #e0e0e0;
}

.team-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-content {
    flex: 1;
}

.team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.team-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.philosophy-section {
    padding: 5rem 2rem;
    background-color: #f4f4f4;
}

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

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

.philosophy-content {
    flex: 1;
}

.philosophy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.philosophy-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.philosophy-image {
    flex: 1;
    background-color: #e0e0e0;
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-cta {
    padding: 5rem 2rem;
    background-color: #1a1a1a;
    text-align: center;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.contact-hero {
    padding: 4rem 2rem;
    background-color: #f8f8f8;
}

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

.contact-intro {
    flex: 1;
}

.contact-intro h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-intro p {
    font-size: 1.15rem;
    color: #555;
}

.contact-visual {
    flex: 1;
    background-color: #e0e0e0;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-details {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.details-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.detail-block {
    flex: 1;
}

.detail-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.contact-note {
    margin-top: 1rem;
    font-style: italic;
    color: #888;
}

.location-section {
    padding: 5rem 2rem;
    background-color: #f4f4f4;
}

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

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

.location-image {
    flex: 1;
    background-color: #e0e0e0;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.location-content {
    flex: 1;
}

.location-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.location-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.contact-info-extra {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.info-content {
    max-width: 1400px;
    margin: 0 auto;
}

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

.info-cards {
    display: flex;
    gap: 2rem;
}

.info-card {
    flex: 1;
    background-color: #f8f8f8;
    padding: 2rem;
    border-radius: 8px;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.info-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.thanks-section {
    padding: 5rem 2rem;
    background-color: #f8f8f8;
    min-height: 70vh;
}

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

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #d4a574;
}

.thanks-details p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.thanks-next h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-next ul {
    list-style: none;
    margin-bottom: 2rem;
}

.thanks-next ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.thanks-next ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.thanks-visual {
    flex: 1;
    background-color: #e0e0e0;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-left: 4px solid #d4a574;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
}

.legal-container p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-container ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #d4a574;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #1a1a1a;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

@media (max-width: 1024px) {
    .hero-split,
    .section-split,
    .booking-split,
    .header-split,
    .service-row,
    .about-split,
    .story-split,
    .team-split,
    .philosophy-split,
    .contact-split,
    .location-split,
    .thanks-container {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        max-width: 100%;
    }

    .testimonials-grid,
    .values-grid,
    .details-layout,
    .info-cards,
    .thanks-actions {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

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

    .split-content h2,
    .story-content h2,
    .team-content h2,
    .philosophy-content h2,
    .location-content h2 {
        font-size: 1.8rem;
    }

    .footer-content {
        flex-direction: column;
    }

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