:root {
    --primary: #c47d8a;
    --primary-dark: #a65d6a;
    --secondary: #f5e6d3;
    --accent: #7b9e87;
    --text: #3a3a3a;
    --text-light: #6b6b6b;
    --white: #ffffff;
    --cream: #faf8f5;
    --border: #e8e0d8;
    --shadow: rgba(0,0,0,0.08);
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

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

.ad-disclosure {
    background: var(--secondary);
    padding: 8px 0;
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}

.top-nav {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px var(--shadow);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

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

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

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary);
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 80px 0;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text);
    font-weight: 700;
}

.hero-content p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 125, 138, 0.35);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-dark);
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.section-intro {
    padding: 100px 0;
    background: var(--cream);
}

.section-intro-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.section-intro-text {
    flex: 1;
}

.section-intro-image {
    flex: 1;
    background-color: var(--secondary);
    border-radius: 12px;
    overflow: hidden;
}

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

.section-title {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text);
    font-weight: 700;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.8;
}

.story-section {
    padding: 100px 0;
    background: var(--white);
}

.story-block {
    display: flex;
    gap: 80px;
    margin-bottom: 80px;
    align-items: center;
}

.story-block:last-child {
    margin-bottom: 0;
}

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

.story-text {
    flex: 1;
}

.story-image {
    flex: 1;
    background-color: var(--secondary);
    border-radius: 16px;
    overflow: hidden;
}

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

.story-number {
    display: inline-block;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 48px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}

.story-text h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text);
}

.story-text p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

.trust-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--cream) 100%);
}

.trust-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.trust-card {
    flex: 1;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px var(--shadow);
    text-align: center;
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.trust-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
}

.trust-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text);
}

.trust-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

.testimonials-section {
    padding: 100px 0;
    background: var(--white);
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    flex: 1;
    background: var(--cream);
    padding: 35px;
    border-radius: 16px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 80px;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-dark);
}

.author-info h5 {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 13px;
    color: var(--text-light);
}

.services-section {
    padding: 100px 0;
    background: var(--cream);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.service-image {
    height: 200px;
    background-color: var(--secondary);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-content {
    padding: 28px;
}

.service-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text);
}

.service-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.7;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 18px;
}

.service-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

.cta-section {
    padding: 100px 0;
    background: var(--primary);
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-dark);
}

.cta-section .btn-primary:hover {
    background: var(--cream);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

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

.form-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text);
}

.form-info p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.form-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text);
}

.form-benefits li svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    flex-shrink: 0;
}

.form-container {
    flex: 1;
    background: var(--cream);
    padding: 45px;
    border-radius: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(196, 125, 138, 0.15);
}

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

.form-submit {
    width: 100%;
    padding: 18px;
    font-size: 17px;
}

.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--secondary) 100%);
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text);
}

.about-hero p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-grid.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    background-color: var(--secondary);
    border-radius: 16px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.values-section {
    padding: 80px 0;
    background: var(--cream);
}

.values-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.value-card {
    flex: 1;
    text-align: center;
    padding: 30px;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 30px var(--shadow);
}

.value-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--primary);
}

.value-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text);
}

.value-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

.services-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--cream) 100%);
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text);
}

.services-hero p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

.service-detail-image {
    flex: 0 0 400px;
    background-color: var(--secondary);
    border-radius: 16px;
    overflow: hidden;
}

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

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

.service-detail-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text);
}

.service-detail-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text);
    font-size: 15px;
}

.service-features li svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
}

.contact-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--secondary) 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text);
}

.contact-hero p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--text);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary);
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--text);
}

.contact-item p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background: var(--cream);
    border-radius: 16px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: var(--text-light);
}

.map-placeholder svg {
    width: 60px;
    height: 60px;
    stroke: var(--primary);
    margin-bottom: 16px;
}

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

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

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

.thanks-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--white);
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text);
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.legal-hero {
    padding: 100px 0 60px;
    background: var(--cream);
    text-align: center;
}

.legal-hero h1 {
    font-size: 42px;
    color: var(--text);
}

.legal-content {
    padding: 60px 0;
}

.legal-content h2 {
    font-size: 24px;
    margin: 40px 0 16px;
    color: var(--text);
}

.legal-content h2:first-child {
    margin-top: 0;
}

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

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

.legal-content li {
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.7;
}

.footer {
    background: var(--text);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

.footer-legal a:hover {
    color: var(--white);
}

.disclaimer {
    background: var(--secondary);
    padding: 30px 0;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
}

.disclaimer p {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text);
    color: var(--white);
    padding: 24px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
}

.cookie-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}

.cookie-text a {
    color: var(--primary);
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

.cookie-accept:hover {
    background: var(--primary-dark);
}

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

.cookie-reject:hover {
    border-color: var(--white);
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 40px;
    }

    .section-intro-content,
    .story-block,
    .form-wrapper,
    .about-grid,
    .service-detail,
    .contact-grid {
        flex-direction: column;
    }

    .story-block.reverse,
    .about-grid.reverse,
    .service-detail.reverse {
        flex-direction: column;
    }

    .trust-grid,
    .testimonial-grid,
    .values-grid {
        flex-direction: column;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 45%;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 10px 30px var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid var(--border);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 16px 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .section-title,
    .about-hero h1,
    .services-hero h1,
    .contact-hero h1,
    .thanks-content h1,
    .legal-hero h1 {
        font-size: 32px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .footer-col {
        flex: 1 1 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

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