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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

.main-nav {
    background-color: #ffffff;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

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

.nav-links a {
    font-size: 1rem;
    color: #4a4a4a;
    transition: color 0.3s ease;
}

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

.ad-label {
    font-size: 0.75rem;
    color: #888;
    padding: 0.4rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f5f5f5;
}

.hero-minimal {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem;
    background-color: #f0f4f6;
    position: relative;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    margin-bottom: 4rem;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #5a5a5a;
    font-weight: 300;
}

.hero-visual {
    max-width: 1100px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.hero-visual img {
    width: 100%;
    background-color: #d9e3e8;
}

.intro-space {
    padding: 8rem 2rem;
    background-color: #ffffff;
}

.narrow-content {
    max-width: 750px;
    margin: 0 auto;
}

.narrow-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.narrow-content p {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.wide-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-preview {
    padding: 8rem 2rem;
    background-color: #fafafa;
}

.services-preview .wide-content {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

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

.service-card img {
    width: 100%;
    height: 240px;
    background-color: #d9e3e8;
}

.service-info {
    padding: 2rem;
}

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

.service-info p {
    font-size: 1rem;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #6b8e9f;
    display: block;
}

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

.split-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
    flex-wrap: wrap;
}

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

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

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

.approach-text p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.approach-image {
    flex: 1;
    min-width: 300px;
}

.approach-image img {
    width: 100%;
    border-radius: 6px;
    background-color: #d9e3e8;
}

.booking-section {
    padding: 8rem 2rem;
    background-color: #f0f4f6;
}

.centered {
    text-align: center;
}

.booking-form {
    max-width: 500px;
    margin: 3rem auto 0;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

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

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #6b8e9f;
    background-color: #ffffff;
}

.btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    background-color: #6b8e9f;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #5a7a8a;
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    color: #6b8e9f;
    background-color: transparent;
    border: 2px solid #6b8e9f;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #6b8e9f;
    color: #ffffff;
}

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

.disclaimer-section {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.small-text p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.main-footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 4rem 2rem 2rem;
}

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

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

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

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

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

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

.footer-column ul li a {
    color: #d0d0d0;
    transition: color 0.3s ease;
}

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

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

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

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

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #6b8e9f;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #2c2c2c;
}

.page-hero {
    padding: 6rem 2rem 4rem;
    background-color: #f0f4f6;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 300;
    color: #1a1a1a;
}

.intro-text {
    font-size: 1.2rem;
    color: #5a5a5a;
    margin-top: 1rem;
}

.about-intro {
    padding: 8rem 2rem;
    background-color: #ffffff;
}

.about-image img {
    width: 100%;
    border-radius: 6px;
    background-color: #d9e3e8;
}

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.philosophy-section {
    padding: 8rem 2rem;
    background-color: #fafafa;
}

.expertise-section {
    padding: 8rem 2rem;
    background-color: #ffffff;
}

.expertise-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 4rem;
    text-align: center;
}

.expertise-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.expertise-item {
    flex: 1;
    min-width: 260px;
    max-width: 300px;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.expertise-item h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.expertise-item p {
    font-size: 1rem;
    color: #5a5a5a;
}

.education-section {
    padding: 8rem 2rem;
    background-color: #fafafa;
}

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

.education-list li {
    font-size: 1.1rem;
    color: #4a4a4a;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.education-list li:last-child {
    border-bottom: none;
}

.personal-section {
    padding: 8rem 2rem;
    background-color: #ffffff;
}

.services-detailed {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.service-detail {
    max-width: 1300px;
    margin: 0 auto 6rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.service-visual img {
    width: 100%;
    border-radius: 6px;
    background-color: #d9e3e8;
}

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

.service-content h2 {
    font-size: 2.2rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.price-block {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f0f4f6;
    border-radius: 6px;
    display: inline-block;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 600;
    color: #6b8e9f;
    display: block;
}

.price-duration {
    font-size: 1rem;
    color: #666;
    display: block;
    margin-top: 0.5rem;
}

.booking-info {
    padding: 8rem 2rem;
    background-color: #f0f4f6;
}

.booking-info a {
    margin-top: 2rem;
}

.faq-section {
    padding: 8rem 2rem;
    background-color: #ffffff;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 1.05rem;
    color: #5a5a5a;
}

.contact-section {
    padding: 8rem 2rem;
    background-color: #ffffff;
}

.contact-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    flex-wrap: wrap;
}

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

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

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

.contact-block h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-detail {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.contact-note {
    font-size: 0.95rem;
    color: #777;
    margin-top: 0.5rem;
}

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

.contact-image img {
    width: 100%;
    border-radius: 6px;
    background-color: #d9e3e8;
}

.availability-section {
    padding: 8rem 2rem;
    background-color: #fafafa;
}

.location-note {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.thanks-section {
    padding: 8rem 2rem;
    background-color: #f0f4f6;
    min-height: 60vh;
}

.thanks-visual {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.thanks-visual img {
    width: 100%;
    border-radius: 6px;
    background-color: #d9e3e8;
}

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

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

.thanks-info {
    max-width: 600px;
    margin: 2rem auto;
}

.thanks-info p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

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

.next-steps {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.steps-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
}

.step-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.step-item h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #6b8e9f;
    margin-bottom: 1rem;
}

.step-item p {
    font-size: 1rem;
    color: #5a5a5a;
}

.legal-content {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.update-date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.legal-content ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.legal-content li {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 0.8rem;
}

.legal-content a {
    color: #6b8e9f;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #5a7a8a;
}

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

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookies-table th {
    font-weight: 600;
    color: #1a1a1a;
    background-color: #f9f9f9;
}

.cookies-table td {
    font-size: 0.95rem;
    color: #4a4a4a;
}

.domain-ref {
    font-family: monospace;
    background-color: #f5f5f5;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
}

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .nav-links {
        gap: 1.5rem;
    }

    .narrow-content h2 {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 2.3rem;
    }

    .split-layout {
        gap: 3rem;
    }

    .service-detail {
        gap: 2.5rem;
        margin-bottom: 4rem;
    }

    .service-content h2 {
        font-size: 1.8rem;
    }

    .thanks-section h1 {
        font-size: 2.3rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: flex-start;
    }
}