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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
}

.main-nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    padding: 1.2rem 0;
}

.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: #1a5f4d;
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

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

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

.ad-notice {
    padding: 0.4rem 1rem;
    background: #f3f4f6;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

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

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem;
    background: #fafafa;
}

.split-image {
    flex: 1;
    overflow: hidden;
    background: #e5e7eb;
    position: relative;
}

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

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

.hero-text p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
    max-width: 600px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.2rem;
    background: #1a5f4d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 1rem;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.cta-primary:hover {
    background: #145241;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 95, 77, 0.25);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.2rem;
    background: transparent;
    color: #1a5f4d;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #1a5f4d;
    transition: all 0.3s ease;
    margin-top: 1rem;
    cursor: pointer;
    font-size: 1rem;
}

.cta-secondary:hover {
    background: #1a5f4d;
    color: #ffffff;
    transform: translateY(-2px);
}

.split-reverse {
    display: flex;
    min-height: 70vh;
    align-items: stretch;
}

.split-standard {
    display: flex;
    min-height: 70vh;
    align-items: stretch;
}

.split-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 700;
}

.split-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
}

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

.section-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.section-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 700;
}

.section-intro p {
    font-size: 1.15rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    max-width: 420px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

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

.service-card p {
    margin: 0 1.5rem 1rem;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-duration {
    font-size: 0.85rem;
    color: #1a5f4d;
    font-weight: 600;
}

.service-link {
    display: inline-block;
    margin: 1rem 1.5rem 1.5rem;
    color: #1a5f4d;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #145241;
}

.dark-section {
    background: #1a202c;
}

.dark-section .split-content {
    background: #1a202c;
}

.dark-section h2,
.dark-section p {
    color: #f7fafc;
}

.booking-section {
    padding: 6rem 2rem;
    background: #f9fafb;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.booking-text {
    flex: 1;
}

.booking-text h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.booking-text p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
}

.booking-form-container {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.booking-form h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

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

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 0.9rem;
    margin-bottom: 1.2rem;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #1a5f4d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

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

.testimonial-section {
    padding: 6rem 2rem;
    background: #f3f4f6;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-section blockquote {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    font-style: italic;
    position: relative;
    padding-left: 2rem;
    border-left: 4px solid #1a5f4d;
}

.testimonial-section cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #6b7280;
    font-size: 1rem;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background: #fef3c7;
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer {
    font-size: 0.9rem;
    color: #78350f;
    line-height: 1.7;
    text-align: center;
    font-style: italic;
}

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

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.2rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e0;
}

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

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

.footer-column a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 32, 44, 0.97);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

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

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

.cookie-btn {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.cookie-btn.accept {
    background: #1a5f4d;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #145241;
}

.cookie-btn.reject {
    background: transparent;
    color: #e5e7eb;
    border: 1px solid #4b5563;
}

.cookie-btn.reject:hover {
    background: #374151;
}

.page-hero {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.page-hero p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

.service-detail {
    padding: 0;
}

.service-detail .split-content {
    padding: 4rem;
}

.service-detail h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.detail-list {
    list-style: none;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 6px;
}

.detail-list li {
    padding: 0.5rem 0;
    color: #4a5568;
    font-size: 0.95rem;
}

.detail-list li::before {
    content: "• ";
    color: #1a5f4d;
    font-weight: bold;
    margin-right: 0.5rem;
}

.price-display {
    font-size: 1.8rem;
    color: #1a5f4d;
    font-weight: 700;
    margin: 2rem 0;
}

.booking-info {
    padding: 5rem 2rem;
    background: #fafafa;
}

.booking-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a202c;
}

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

.info-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

.info-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 0.95rem;
}

.contact-layout {
    max-width: 1300px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 4rem;
}

.contact-main {
    flex: 2;
}

.contact-sidebar {
    flex: 1;
}

.contact-info-block {
    margin-bottom: 3rem;
}

.contact-info-block h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a202c;
}

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

.contact-detail h3 {
    font-size: 1.2rem;
    color: #1a5f4d;
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.contact-detail p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
}

.contact-email {
    font-weight: 600;
    color: #2c3e50;
}

.contact-notes h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.note-item {
    margin-bottom: 2rem;
}

.note-item h3 {
    font-size: 1.1rem;
    color: #1a5f4d;
    margin-bottom: 0.5rem;
}

.note-item p {
    color: #4a5568;
    line-height: 1.7;
}

.sidebar-card {
    background: #f9fafb;
    padding: 1.8rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #1a5f4d;
}

.sidebar-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.sidebar-card p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.sidebar-link {
    display: inline-block;
    color: #1a5f4d;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.sidebar-link:hover {
    color: #145241;
}

.faq-section {
    padding: 4rem 2rem;
    background: #fafafa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: #1a202c;
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: #ffffff;
    padding: 1.8rem;
    border-radius: 6px;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #1a5f4d;
}

.faq-item p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-container {
    padding: 6rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a5f4d;
}

.thanks-message {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.thanks-details {
    text-align: left;
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-details h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.thanks-details p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.next-steps {
    list-style: none;
    margin: 1.5rem 0;
}

.next-steps li {
    padding: 0.7rem 0;
    color: #4a5568;
    padding-left: 1.5rem;
    position: relative;
}

.next-steps li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5f4d;
    font-weight: bold;
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}

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

.legal-intro {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 2rem;
    font-weight: 500;
}

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

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a5f4d;
}

.legal-page p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.2rem;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style: disc;
}

.legal-page li {
    margin-bottom: 0.7rem;
    color: #4a5568;
    line-height: 1.7;
}

.legal-page a {
    color: #1a5f4d;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #145241;
}

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.cookie-table th {
    background: #f3f4f6;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #1a202c;
    border-bottom: 2px solid #d1d5db;
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    color: #4a5568;
}

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

.approach-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a202c;
}

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

.approach-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
}

.approach-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a5f4d;
}

.approach-item p {
    color: #4a5568;
    line-height: 1.8;
}

.credentials-section {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.credentials-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a202c;
}

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

.credential-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.credential-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: #1a5f4d;
}

.credential-item ul {
    list-style: none;
}

.credential-item li {
    padding: 0.5rem 0;
    color: #4a5568;
    padding-left: 1.2rem;
    position: relative;
}

.credential-item li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a5f4d;
}

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

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a202c;
}

.values-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a5f4d;
}

.value-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
}

@media (max-width: 968px) {
    .hero-split,
    .split-reverse,
    .split-standard {
        flex-direction: column;
    }

    .split-content,
    .split-image {
        min-height: 50vh;
    }

    .booking-container {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 1.5rem;
    }

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

    .hero-text h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .split-content {
        padding: 3rem 2rem;
    }

    .service-card {
        min-width: 100%;
    }

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

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