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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.brand {
    font-size: 24px;
    font-weight: 600;
    color: #d4a5a5;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 4px 10px;
    background: #f5f5f5;
    border-radius: 4px;
}

.hero-section {
    display: flex;
    flex-direction: column;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f5e6e8 0%, #d4a5a5 100%);
    z-index: 1;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #555;
}

.hero-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #d4a5a5;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #d4a5a5;
    text-decoration: none;
    border: 2px solid #d4a5a5;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.intro-cards {
    padding: 80px 0;
    background: #fafafa;
}

.card-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.feature-card h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
    color: #333;
}

.feature-card p {
    padding: 0 20px 20px;
    color: #666;
    font-size: 15px;
}

.services-preview {
    padding: 80px 0;
    background: #ffffff;
}

.services-preview h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #333;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
}

.service-card {
    display: flex;
    gap: 30px;
    align-items: center;
    background: #fafafa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.service-image {
    flex: 0 0 400px;
    height: 300px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #f0f0f0;
}

.service-content {
    flex: 1;
    padding: 30px;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #333;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.price {
    display: inline-block;
    font-size: 28px;
    font-weight: 700;
    color: #d4a5a5;
    margin-top: 10px;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.booking-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5e6e8 0%, #faf5f6 100%);
}

.booking-card {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
}

.booking-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
    color: #333;
}

.booking-card > p {
    text-align: center;
    color: #666;
    margin-bottom: 35px;
}

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

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-button {
    padding: 16px;
    background: #d4a5a5;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.about-preview {
    padding: 80px 0;
    background: #ffffff;
}

.about-split {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #333;
}

.about-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.link-arrow {
    display: inline-block;
    color: #d4a5a5;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: transform 0.3s;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.main-footer {
    background: #2c2c2c;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #d4a5a5;
}

.footer-col p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

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

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 13px;
    margin-bottom: 10px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.15);
    padding: 25px;
    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;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    color: #333;
    font-size: 14px;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: #d4a5a5;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #c49090;
}

.cookie-reject {
    background: #f0f0f0;
    color: #333;
}

.cookie-reject:hover {
    background: #e0e0e0;
}

.cookie-learn {
    color: #d4a5a5;
    text-decoration: none;
    font-weight: 600;
}

.page-header {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f5e6e8 0%, #faf5f6 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #333;
}

.page-header p {
    font-size: 18px;
    color: #666;
}

.about-story {
    padding: 80px 0;
    background: #ffffff;
}

.story-layout {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.story-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-color: #f0f0f0;
}

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

.story-content h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #333;
}

.story-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-section {
    padding: 80px 0;
    background: #fafafa;
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #333;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #d4a5a5;
}

.value-card p {
    color: #666;
    line-height: 1.8;
}

.team-section {
    padding: 80px 0;
    background: #ffffff;
}

.team-intro {
    text-align: center;
    margin-bottom: 40px;
}

.team-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #333;
}

.team-intro p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    line-height: 1.8;
}

.team-image {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.team-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #666;
    line-height: 1.8;
}

.approach-section {
    padding: 80px 0;
    background: #fafafa;
}

.approach-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #333;
}

.approach-columns {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.approach-col {
    flex: 1;
    min-width: 280px;
}

.approach-col h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #d4a5a5;
}

.approach-col p {
    color: #666;
    line-height: 1.8;
}

.cta-about {
    padding: 80px 0;
    background: linear-gradient(135deg, #d4a5a5 0%, #c49090 100%);
}

.cta-box {
    text-align: center;
    color: #ffffff;
}

.cta-box h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-box .cta-button {
    background: #ffffff;
    color: #d4a5a5;
}

.cta-box .cta-button:hover {
    background: #f0f0f0;
}

.services-full {
    padding: 80px 0;
    background: #ffffff;
}

.service-item {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

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

.service-visual {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.service-details {
    flex: 1;
    min-width: 300px;
}

.service-details h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.service-details p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-includes {
    list-style: none;
    margin-bottom: 25px;
}

.service-includes li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4a5a5;
    font-weight: bold;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #d4a5a5;
}

.booking-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5e6e8 0%, #faf5f6 100%);
    text-align: center;
}

.booking-cta h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #333;
}

.booking-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.contact-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 34px;
    margin-bottom: 40px;
    color: #333;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #d4a5a5;
}

.info-block p {
    color: #666;
    line-height: 1.8;
}

.contact-visual {
    flex: 1;
    min-width: 300px;
}

.contact-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    background-color: #f0f0f0;
    margin-bottom: 20px;
}

.contact-note {
    background: #fafafa;
    padding: 25px;
    border-radius: 8px;
}

.contact-note p {
    color: #666;
    line-height: 1.8;
}

.how-to-reach {
    padding: 80px 0;
    background: #fafafa;
}

.how-to-reach h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #333;
}

.directions-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.direction-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.direction-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #d4a5a5;
}

.direction-card p {
    color: #666;
    margin-bottom: 12px;
    line-height: 1.8;
}

.visit-preparation {
    padding: 80px 0;
    background: #ffffff;
}

.visit-preparation h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #333;
}

.preparation-content {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.prep-text {
    flex: 1;
    min-width: 300px;
}

.prep-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.prep-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.prep-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.cta-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #d4a5a5 0%, #c49090 100%);
    text-align: center;
    color: #ffffff;
}

.cta-contact h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.cta-contact p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-contact .cta-button {
    background: #ffffff;
    color: #d4a5a5;
}

.cta-contact .cta-button:hover {
    background: #f0f0f0;
}

.thanks-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5e6e8 0%, #faf5f6 100%);
    min-height: 70vh;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #333;
}

.thanks-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.8;
}

.service-info {
    background: #f5e6e8;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 35px;
    color: #333;
}

.thanks-details {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-details h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #333;
}

.next-steps {
    list-style: none;
}

.next-steps li {
    padding: 12px 0;
    color: #666;
    position: relative;
    padding-left: 30px;
    line-height: 1.6;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #d4a5a5;
    font-weight: bold;
    font-size: 18px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.tips-section {
    padding: 80px 0;
    background: #ffffff;
}

.tips-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #333;
}

.tips-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.tip-card {
    flex: 1;
    min-width: 280px;
    background: #fafafa;
    padding: 35px;
    border-radius: 12px;
}

.tip-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #d4a5a5;
}

.tip-card p {
    color: #666;
    line-height: 1.8;
}

.legal-content {
    padding: 60px 0;
    background: #ffffff;
}

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

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #333;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #d4a5a5;
}

.legal-container p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-container ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-container ul li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-container a {
    color: #d4a5a5;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

.legal-update {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
    color: #999;
    font-size: 14px;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

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

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

    .service-image {
        flex: 0 0 auto;
        width: 100%;
        height: 250px;
    }

    .nav-links {
        gap: 15px;
    }

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

    .booking-card {
        padding: 30px 20px;
    }

    .service-item,
    .service-item.reverse {
        flex-direction: column;
    }

    .thanks-content {
        padding: 40px 25px;
    }
}
