* {
    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: #2c3e50;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    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;
    margin: 0;
}

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

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

.btn-cookie {
    background-color: #7c9885;
    color: white;
}

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

.btn-cookie-alt {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cookie-alt:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.main-nav {
    background-color: white;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 0.85rem;
    color: #7f8c8d;
    padding: 0.5rem 1rem;
    background-color: #ecf0f1;
    border-radius: 4px;
}

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

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

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-left p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #546e7a;
}

.hero-right {
    flex: 1;
    background-color: #d4e3d9;
    position: relative;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #7c9885;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #6a8473;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #7c9885;
    text-decoration: none;
    border: 2px solid #7c9885;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #7c9885;
    color: white;
}

.intro-section {
    padding: 4rem 2rem;
    background-color: white;
}

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

.intro-content p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #546e7a;
}

.split-feature {
    display: flex;
    min-height: 600px;
}

.feature-image {
    flex: 1;
    background-color: #e8ede9;
    position: relative;
    overflow: hidden;
}

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

.feature-text {
    flex: 1;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.feature-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.feature-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #546e7a;
}

.services-split {
    display: flex;
    min-height: 600px;
    background-color: white;
}

.services-text {
    flex: 1;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.services-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #546e7a;
}

.services-cards {
    flex: 1;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    background-color: #f8f9fa;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.service-card p {
    color: #546e7a;
    margin-bottom: 1rem;
}

.price {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: #7c9885;
}

.philosophy-split {
    display: flex;
    min-height: 600px;
}

.philosophy-text {
    flex: 1;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2c3e50;
    color: white;
}

.philosophy-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.philosophy-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.philosophy-image {
    flex: 1;
    background-color: #d4e3d9;
    position: relative;
    overflow: hidden;
}

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

.testimonial-section {
    padding: 6rem 2rem;
    background-color: #7c9885;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
}

blockquote {
    border: none;
}

blockquote p {
    font-size: 1.75rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 1.5rem;
    font-style: italic;
}

cite {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: normal;
}

.location-split {
    display: flex;
    min-height: 600px;
}

.location-image {
    flex: 1;
    background-color: #e8ede9;
    position: relative;
    overflow: hidden;
}

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

.location-text {
    flex: 1;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: white;
}

.location-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.location-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #546e7a;
}

.cta-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
}

.cta-content > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #546e7a;
    text-align: center;
}

.booking-form {
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

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

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

.booking-form button {
    width: 100%;
    margin-top: 1rem;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #ecf0f1;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.main-footer {
    background-color: #2c3e50;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-section p {
    color: #bdc3c7;
    margin: 0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

.page-header {
    padding: 8rem 2rem 4rem;
    background-color: #f8f9fa;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: #546e7a;
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.content-section p {
    margin-bottom: 1rem;
    color: #546e7a;
    line-height: 1.8;
}

.content-section ul {
    margin: 1rem 0 1rem 2rem;
    color: #546e7a;
}

.content-section li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.service-detail-card {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.service-detail-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-detail-card p {
    margin-bottom: 1.5rem;
    color: #546e7a;
}

.service-detail-card .price {
    font-size: 1.5rem;
    color: #7c9885;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-split {
    display: flex;
    min-height: 600px;
}

.contact-info {
    flex: 1;
    padding: 4rem;
    background-color: #2c3e50;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #7c9885;
}

.detail-item p {
    color: #ecf0f1;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
    background-color: #d4e3d9;
}

.about-image-section {
    display: flex;
    min-height: 500px;
    margin: 3rem 0;
}

.about-image {
    flex: 1;
    background-color: #e8ede9;
    position: relative;
    overflow: hidden;
}

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

.about-text {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.about-text p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1rem;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
    background-color: white;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.25rem;
    color: #546e7a;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-split,
    .split-feature,
    .services-split,
    .philosophy-split,
    .location-split,
    .contact-split,
    .about-image-section {
        flex-direction: column;
    }

    .hero-left,
    .feature-text,
    .services-text,
    .philosophy-text,
    .location-text,
    .contact-info,
    .about-text {
        padding: 3rem 2rem;
    }

    .hero-left h1,
    .page-header h1 {
        font-size: 2rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

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