:root {
    --primary: #8B4D6B;
    --primary-light: #A86B8A;
    --primary-dark: #6D3A54;
    --secondary: #2C4A3E;
    --accent: #D4A574;
    --accent-light: #E8C9A8;
    --neutral-100: #FDFBF9;
    --neutral-200: #F5F0EB;
    --neutral-300: #E8E0D8;
    --neutral-400: #C4B8AC;
    --neutral-700: #4A4541;
    --neutral-900: #2A2725;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--neutral-700);
    background-color: var(--neutral-100);
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.25;
    color: var(--neutral-900);
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-dark);
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.ad-disclosure-bar {
    background-color: var(--neutral-200);
    padding: 8px 24px;
    text-align: center;
    font-size: 13px;
    color: var(--neutral-700);
    border-bottom: 1px solid var(--neutral-300);
}

.main-header {
    background-color: var(--neutral-100);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
}

.logo span {
    color: var(--secondary);
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: var(--neutral-700);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.25s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-700);
    margin: 5px 0;
    transition: transform 0.3s ease;
}

.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-color: var(--accent-light);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139,77,107,0.75) 0%, rgba(44,74,62,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 60px 24px;
    margin-left: 8%;
}

.hero-content h1 {
    color: #fff;
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-content p {
    color: rgba(255,255,255,0.92);
    font-size: 1.2rem;
    margin-bottom: 36px;
    max-width: 540px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--neutral-900);
}

.btn-primary:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,165,116,0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: var(--primary);
}

.btn-dark {
    background-color: var(--primary);
    color: #fff;
}

.btn-dark:hover {
    background-color: var(--primary-dark);
}

.section {
    padding: 80px 0;
}

.section-alt {
    background-color: var(--neutral-200);
}

.section-dark {
    background-color: var(--secondary);
    color: #fff;
}

.section-dark h2 {
    color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header p {
    margin-top: 16px;
    color: var(--neutral-700);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.intro-block {
    display: flex;
    align-items: center;
    gap: 64px;
    padding: 100px 0;
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    margin-bottom: 24px;
}

.intro-text p {
    margin-bottom: 20px;
}

.intro-image {
    flex: 1;
    position: relative;
    background-color: var(--accent-light);
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

.intro-image img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 48px 24px;
    background-color: var(--neutral-200);
}

.trust-badge {
    text-align: center;
}

.trust-badge-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.trust-badge-text {
    font-size: 14px;
    color: var(--neutral-700);
    margin-top: 8px;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    flex: 1 1 320px;
    max-width: 380px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px 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 40px rgba(0,0,0,0.12);
}

.service-card-image {
    height: 200px;
    background-color: var(--neutral-300);
    position: relative;
}

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

.service-card-body {
    padding: 28px;
}

.service-card-body h3 {
    margin-bottom: 12px;
}

.service-card-body p {
    font-size: 15px;
    color: var(--neutral-700);
    margin-bottom: 20px;
}

.service-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.service-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--neutral-700);
}

.testimonials-section {
    background: linear-gradient(180deg, var(--neutral-100) 0%, var(--neutral-200) 100%);
}

.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 4rem;
    font-family: var(--font-display);
    color: var(--accent);
    line-height: 1;
    opacity: 0.4;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--neutral-700);
    margin-bottom: 24px;
    padding-left: 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-left: 32px;
}

.testimonial-author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary);
    font-size: 1.2rem;
}

.testimonial-author-info strong {
    display: block;
    color: var(--neutral-900);
}

.testimonial-author-info span {
    font-size: 14px;
    color: var(--neutral-700);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.benefit-item {
    flex: 1 1 280px;
    max-width: 340px;
    text-align: center;
    padding: 32px 24px;
}

.benefit-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background-color: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 1.5;
}

.benefit-item h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.benefit-item p {
    font-size: 15px;
    color: var(--neutral-700);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 24px;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.form-section {
    background-color: var(--neutral-200);
    padding: 100px 0;
}

.form-container {
    max-width: 640px;
    margin: 0 auto;
    background-color: #fff;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 12px;
}

.form-container > p {
    text-align: center;
    margin-bottom: 36px;
    color: var(--neutral-700);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--neutral-900);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    font-family: var(--font-body);
    border: 2px solid var(--neutral-300);
    border-radius: 6px;
    background-color: var(--neutral-100);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139,77,107,0.15);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 32px;
}

.form-submit .btn {
    width: 100%;
    max-width: 280px;
    padding: 16px 32px;
}

.about-hero {
    background-color: var(--secondary);
    padding: 100px 24px;
    text-align: center;
}

.about-hero h1 {
    color: #fff;
    margin-bottom: 20px;
}

.about-hero p {
    color: rgba(255,255,255,0.85);
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.15rem;
}

.about-content {
    padding: 80px 0;
}

.about-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-main {
    flex: 2;
}

.about-main h2 {
    margin-bottom: 24px;
}

.about-main p {
    margin-bottom: 20px;
}

.about-sidebar {
    flex: 1;
    background-color: var(--neutral-200);
    padding: 32px;
    border-radius: 12px;
}

.about-sidebar h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.about-sidebar ul {
    list-style: none;
}

.about-sidebar li {
    padding: 12px 0;
    border-bottom: 1px solid var(--neutral-300);
    font-size: 15px;
}

.about-sidebar li:last-child {
    border-bottom: none;
}

.services-hero {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--neutral-200) 100%);
    padding: 80px 24px;
    text-align: center;
}

.services-hero h1 {
    margin-bottom: 16px;
}

.services-list {
    padding: 80px 0;
}

.service-detail {
    display: flex;
    gap: 48px;
    align-items: center;
    padding: 48px 0;
    border-bottom: 1px solid var(--neutral-300);
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail-image {
    flex: 1;
    min-height: 280px;
    background-color: var(--neutral-300);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.service-detail-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h3 {
    margin-bottom: 16px;
    font-size: 1.6rem;
}

.service-detail-content p {
    margin-bottom: 20px;
    color: var(--neutral-700);
}

.service-detail-price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-hero {
    background-color: var(--primary);
    padding: 80px 24px;
    text-align: center;
}

.contact-hero h1 {
    color: #fff;
    margin-bottom: 16px;
}

.contact-hero p {
    color: rgba(255,255,255,0.85);
    max-width: 500px;
    margin: 0 auto;
}

.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 32px;
}

.contact-item {
    margin-bottom: 28px;
}

.contact-item h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--neutral-700);
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    min-height: 400px;
    background-color: var(--neutral-300);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-700);
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
    background: linear-gradient(180deg, var(--neutral-100) 0%, var(--neutral-200) 100%);
}

.thanks-content {
    max-width: 560px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-icon svg {
    width: 48px;
    height: 48px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}

.thanks-content h1 {
    margin-bottom: 20px;
}

.thanks-content p {
    margin-bottom: 32px;
    color: var(--neutral-700);
}

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    margin-bottom: 40px;
    text-align: center;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.legal-content h3 {
    margin-top: 28px;
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.legal-content p {
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

.main-footer {
    background-color: var(--neutral-900);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

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

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 14px;
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
    margin: 0 12px;
}

.disclaimer-section {
    background-color: var(--neutral-200);
    padding: 40px 24px;
    text-align: center;
}

.disclaimer-section p {
    font-size: 13px;
    color: var(--neutral-700);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--neutral-900);
    color: #fff;
    padding: 20px 24px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-banner p {
    flex: 1;
    font-size: 14px;
    margin: 0;
}

.cookie-banner p a {
    color: var(--accent);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.cookie-accept {
    background-color: var(--accent);
    color: var(--neutral-900);
}

.cookie-accept:hover {
    background-color: var(--accent-light);
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 24px;
    z-index: 90;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-cta a {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary);
    color: #fff;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(139,77,107,0.4);
}

.sticky-cta a:hover {
    background-color: var(--primary-dark);
    color: #fff;
}

@media (max-width: 900px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--neutral-100);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 16px 0;
        border-bottom: 1px solid var(--neutral-300);
    }

    .nav-toggle {
        display: block;
    }

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

    .intro-image {
        min-height: 300px;
        width: 100%;
    }

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

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

    .service-detail,
    .service-detail:nth-child(even) {
        flex-direction: column;
    }

    .service-detail-image {
        width: 100%;
    }

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

    .hero-content {
        margin-left: 0;
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 600px) {
    .trust-badges {
        gap: 24px;
    }

    .trust-badge {
        flex: 1 1 120px;
    }

    .form-container {
        padding: 32px 20px;
    }

    .testimonial-card {
        padding: 28px 20px;
    }

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