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

.main-nav {
    background-color: #1a1a1a;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    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;
}

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

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

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

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #999;
    padding: 0.3rem 0.8rem;
    background-color: #2a2a2a;
    border-radius: 3px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #229954;
}

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

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

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

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

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

.hero-left p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: #555;
    max-width: 520px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.intro-text {
    flex: 1;
    padding: 5rem 3rem;
    background-color: #ffffff;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.services-preview {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.services-header p {
    font-size: 1.1rem;
    color: #666;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    flex: 1;
    max-width: 380px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e8e8e8;
}

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

.service-card p {
    font-size: 0.95rem;
    margin: 0 1.5rem 1.5rem;
    color: #666;
}

.service-card .price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin: 0 1.5rem 1.5rem;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.services-cta a {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2c3e50;
    border-radius: 4px;
    transition: all 0.3s;
}

.services-cta a:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

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

.booking-info {
    flex: 1;
    padding: 5rem 3rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.booking-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.booking-info p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.benefits {
    list-style: none;
    margin-top: 2rem;
}

.benefits li {
    padding: 0.8rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1rem;
}

.benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.2rem;
}

.booking-form-container {
    flex: 1;
    padding: 5rem 3rem;
    background-color: #f8f9fa;
}

.booking-form h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

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

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

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

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

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

.philosophy-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.philosophy-text {
    flex: 1;
    padding: 5rem 3rem;
    background-color: #ffffff;
}

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

.philosophy-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

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

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

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

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

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

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

.footer-bottom .disclaimer {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-hero {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 5rem 2rem 4rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.story-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.story-text {
    flex: 1;
    padding: 5rem 3rem;
    background-color: #f8f9fa;
}

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

.story-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.values-text {
    flex: 1;
    padding: 5rem 3rem;
    background-color: #ffffff;
}

.values-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.values-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

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

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

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

.team-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 700;
}

.team-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.team-member {
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    flex: 1;
    max-width: 380px;
}

.team-member img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.team-member h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 0.8rem;
    color: #1a1a1a;
}

.team-member p {
    font-size: 0.95rem;
    margin: 0 1.5rem 1.5rem;
    color: #666;
}

.approach-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.approach-text {
    flex: 1;
    padding: 5rem 3rem;
    background-color: #ffffff;
}

.approach-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
}

.service-item {
    background-color: #ffffff;
}

.service-content {
    display: flex;
}

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

.service-info {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-info p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.service-price {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #27ae60;
    margin-top: 2rem;
}

.service-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8e8e8;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-cta {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #1a252f;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-details {
    flex: 1;
    padding: 5rem 3rem;
    background-color: #f8f9fa;
}

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 600;
}

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

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

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

.location-info {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

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

.info-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

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

.thanks-content {
    flex: 1.2;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
    font-weight: 700;
}

.thanks-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.confirmation-details {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
    border-left: 4px solid #27ae60;
}

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

.btn-primary {
    padding: 1rem 2.5rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #1a252f;
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2c3e50;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

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

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.last-updated {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 600;
}

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page ul li {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

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

    .hero-split,
    .intro-split,
    .booking-split,
    .philosophy-split,
    .story-split,
    .values-split,
    .approach-split,
    .contact-split,
    .thanks-page {
        flex-direction: column;
    }

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

    .hero-left,
    .intro-text,
    .booking-info,
    .booking-form-container,
    .philosophy-text,
    .story-text,
    .values-text,
    .approach-text,
    .contact-details,
    .thanks-content {
        padding: 3rem 2rem;
    }

    .hero-left h1 {
        font-size: 2.2rem;
    }

    .services-grid,
    .team-grid {
        flex-direction: column;
        align-items: center;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .thanks-actions {
        flex-direction: column;
    }
}