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

:root {
    --primary-color: #d4917c;
    --secondary-color: #8b5a5a;
    --accent-color: #f4e4d7;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #fefefe;
    --bg-cream: #f9f5f1;
    --border-color: #e8dfd6;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

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

.nav-split {
    background: var(--bg-light);
    padding: 1.2rem 2rem;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand a {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
}

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

.nav-links a {
    color: var(--text-light);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hero-split {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--bg-cream);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 3rem 2rem;
}

.hero-text-side {
    flex: 1;
    padding-right: 4rem;
}

.hero-text-side h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero-text-side p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-image-side {
    flex: 1;
}

.hero-image-side img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.intro-asymmetric {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.intro-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.intro-visual {
    flex: 0.9;
}

.intro-visual img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 4px;
}

.intro-copy {
    flex: 1.1;
}

.intro-copy h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.intro-copy p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.why-different {
    padding: 6rem 2rem;
    background: var(--bg-cream);
}

.content-centered {
    max-width: 1200px;
    margin: 0 auto;
}

.content-centered h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--secondary-color);
}

.features-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.visual-story {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.story-block {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-image {
    flex: 1.2;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 6px;
}

.story-text {
    flex: 0.8;
}

.story-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
}

.services-preview {
    padding: 6rem 2rem;
    background: var(--bg-cream);
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.services-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-split-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-block {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

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

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.price-tag {
    display: inline-block;
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.2rem;
}

.service-visual {
    flex: 0.7;
}

.service-visual img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 6px;
}

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

.cta-secondary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.trust-signals {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.trust-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.testimonials-flow {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-cream);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial cite {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: normal;
}

.booking-section {
    padding: 6rem 2rem;
    background: var(--bg-cream);
}

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

.booking-left {
    flex: 1;
}

.booking-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.booking-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.booking-benefits {
    list-style: none;
}

.booking-benefits li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.booking-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.booking-right {
    flex: 1;
}

.booking-form {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.final-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 1.5rem;
}

.final-cta-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-large {
    display: inline-block;
    background: white;
    color: var(--secondary-color);
    padding: 1.3rem 3.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.cta-large:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.site-footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

.footer-col h4 {
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 1.5rem 2rem;
    display: none;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

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

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

.cookie-content p {
    flex: 1;
    color: rgba(255,255,255,0.9);
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--primary-color);
    color: white;
}

.btn-accept:hover {
    background: var(--secondary-color);
}

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
}

.sticky-cta a {
    display: block;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.sticky-cta a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.4);
}

@media (max-width: 968px) {
    .nav-links {
        gap: 1.5rem;
    }

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

    .hero-text-side {
        padding-right: 0;
        margin-bottom: 3rem;
    }

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

    .intro-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .story-block {
        flex-direction: column;
        gap: 2rem;
    }

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

    .booking-container {
        flex-direction: column;
        gap: 3rem;
    }

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

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }
}

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

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

    .hero-text-side p {
        font-size: 1rem;
    }

    .intro-copy h2,
    .services-header h2 {
        font-size: 2rem;
    }

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

    .testimonials-flow {
        flex-direction: column;
    }

    .booking-form {
        padding: 2rem;
    }

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

.page-hero {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    padding: 5rem 2rem 4rem;
    text-align: center;
}

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

.page-hero-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

.about-intro {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.values-section {
    padding: 6rem 2rem;
    background: var(--bg-cream);
}

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

.values-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--secondary-color);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: white;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.value-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.team-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.team-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.team-wrapper h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.member {
    background: var(--bg-cream);
    padding: 2.5rem;
    border-radius: 8px;
}

.member-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.role {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-info p {
    color: var(--text-light);
    line-height: 1.8;
}

.philosophy-section {
    padding: 6rem 2rem;
    background: var(--bg-cream);
}

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.philosophy-left {
    flex: 1;
}

.philosophy-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.philosophy-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.philosophy-right {
    flex: 1;
}

.philosophy-right img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.cta-about {
    padding: 5rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.cta-about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.cta-about-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.services-full {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.services-full-container {
    max-width: 1100px;
    margin: 0 auto;
}

.service-category {
    margin-bottom: 5rem;
}

.service-category h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: var(--secondary-color);
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 1rem;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem;
    background: var(--bg-cream);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.service-details {
    flex: 1;
    padding-right: 2rem;
}

.service-details h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.service-details p {
    color: var(--text-light);
    line-height: 1.7;
}

.service-price {
    flex-shrink: 0;
    text-align: right;
}

.service-price span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-price small {
    display: block;
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-top: 0.5rem;
    font-weight: 600;
}

.services-info {
    padding: 5rem 2rem;
    background: var(--bg-cream);
}

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

.info-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--secondary-color);
}

.info-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.info-block {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: white;
    border-radius: 8px;
}

.info-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.info-block ul {
    list-style: none;
}

.info-block ul li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
}

.info-block ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.services-cta-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.services-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.services-cta-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.cta-button-large {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1.3rem 3.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.cta-button-large:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.contact-main {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
}

.contact-info-side {
    flex: 1;
}

.contact-info-side h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

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

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.contact-block p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-block a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-block a:hover {
    text-decoration: underline;
}

.contact-map-side {
    flex: 1;
}

.map-placeholder {
    position: relative;
    margin-bottom: 2rem;
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 1rem;
    border-radius: 0 0 8px 8px;
}

.directions-info {
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: 8px;
}

.directions-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.directions-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.faq-section {
    padding: 5rem 2rem;
    background: var(--bg-cream);
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--secondary-color);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.faq-item {
    flex: 1;
    min-width: 300px;
    max-width: 48%;
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-cta {
    padding: 5rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.contact-cta-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
    min-height: 70vh;
}

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

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.thanks-main-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.thanks-details {
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-details h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-label {
    font-weight: 600;
    color: var(--text-dark);
}

.detail-value {
    color: var(--primary-color);
    font-weight: 500;
}

.thanks-next-steps {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    text-align: left;
}

.thanks-next-steps h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.thanks-next-steps ol {
    padding-left: 1.5rem;
}

.thanks-next-steps ol li {
    padding: 0.6rem 0;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-contact-info {
    margin-bottom: 2.5rem;
}

.thanks-contact-info p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.thanks-contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.thanks-contact-info a:hover {
    text-decoration: underline;
}

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

.btn-primary-thanks {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary-thanks:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary-thanks {
    display: inline-block;
    background: transparent;
    color: var(--secondary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: 2px solid var(--secondary-color);
    font-weight: 500;
    transition: all 0.3s;
}

.btn-secondary-thanks:hover {
    background: var(--secondary-color);
    color: white;
}

.thanks-extra {
    padding: 5rem 2rem;
    background: var(--bg-cream);
}

.thanks-extra-container {
    max-width: 1100px;
    margin: 0 auto;
}

.thanks-extra-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.extra-tips {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.tip-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
}

.tip-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.tip-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.legal-page {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-update {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li,
.legal-content ol li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.cookie-table {
    width: 100%;
    margin-bottom: 2rem;
    background: var(--bg-cream);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table tr {
    border-bottom: 1px solid var(--border-color);
}

.cookie-table tr:last-child {
    border-bottom: none;
}

.cookie-table td {
    padding: 1rem;
    color: var(--text-light);
}

.cookie-table td:first-child {
    width: 25%;
    font-weight: 600;
}

@media (max-width: 968px) {
    .page-hero-content h1 {
        font-size: 2.2rem;
    }

    .about-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .philosophy-content {
        flex-direction: column;
        gap: 3rem;
    }

    .contact-container {
        flex-direction: column;
        gap: 3rem;
    }

    .faq-item {
        max-width: 100%;
    }

    .extra-tips {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .service-item {
        flex-direction: column;
        gap: 1rem;
    }

    .service-details {
        padding-right: 0;
    }

    .service-price {
        text-align: left;
    }

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

    .btn-primary-thanks,
    .btn-secondary-thanks {
        width: 100%;
        text-align: center;
    }
}
