:root {
    --color-primary: #7c3f58;
    --color-secondary: #d4a5b9;
    --color-accent: #f4e1e5;
    --color-dark: #2d1f24;
    --color-light: #faf7f8;
    --color-text: #3d2e33;
    --color-muted: #8a7a7f;
    --color-success: #5a8f6a;
    --color-warning: #c49b4a;
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --shadow-soft: 0 4px 20px rgba(45, 31, 36, 0.08);
    --shadow-medium: 0 8px 32px rgba(45, 31, 36, 0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-light);
    line-height: 1.7;
    font-size: 16px;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    line-height: 1.3;
}

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

.ad-disclosure {
    background-color: var(--color-dark);
    color: var(--color-accent);
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
}

.header {
    background-color: rgba(250, 247, 248, 0.95);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-soft);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--color-primary);
    font-weight: 700;
}

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

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

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

.nav-main 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(--color-dark);
    margin: 5px 0;
    transition: var(--transition);
}

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

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 31, 36, 0.7) 0%, rgba(124, 63, 88, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 48px;
    background-color: rgba(250, 247, 248, 0.92);
    border-radius: var(--radius-lg);
    margin-left: 8%;
}

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 28px;
    color: var(--color-text);
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-align: center;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

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

.section {
    padding: 80px 0;
}

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

.section-dark {
    background-color: var(--color-dark);
    color: var(--color-light);
}

.section-dark h2,
.section-dark h3 {
    color: var(--color-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--color-muted);
    font-size: 18px;
}

.visual-block {
    display: flex;
    align-items: center;
    gap: 64px;
}

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

.visual-block-image {
    flex: 1;
    position: relative;
    background-color: var(--color-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
}

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

.visual-block-content {
    flex: 1;
}

.visual-block-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

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

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

.service-card {
    flex: 1 1 340px;
    max-width: 380px;
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.service-card-image {
    height: 220px;
    background-color: var(--color-secondary);
    position: relative;
}

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

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

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

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

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

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

.testimonials {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-light) 100%);
}

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

.testimonial-card {
    flex: 1 1 320px;
    max-width: 400px;
    background-color: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
}

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

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

.testimonial-name {
    font-weight: 600;
    color: var(--color-dark);
}

.testimonial-location {
    font-size: 14px;
    color: var(--color-muted);
}

.benefits-section {
    padding: 100px 0;
    position: relative;
}

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

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

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

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

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

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

.form-section {
    padding: 80px 0;
    background-color: var(--color-accent);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--color-secondary);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-family: inherit;
    transition: border-color var(--transition);
}

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

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

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

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.contact-item {
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
    padding: 32px;
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.contact-item p {
    color: var(--color-text);
}

.footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 64px 0 32px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: space-between;
    margin-bottom: 48px;
}

.footer-col {
    flex: 1 1 220px;
    max-width: 280px;
}

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

.footer-col p {
    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.8;
}

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

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

.footer-col ul a {
    color: var(--color-muted);
    font-size: 15px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-muted);
    font-size: 14px;
}

.disclaimer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-top: 32px;
    font-size: 13px;
    color: var(--color-muted);
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 24px;
    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: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 14px;
}

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

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

.cookie-btn {
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}

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

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

.cookie-reject {
    background-color: transparent;
    color: var(--color-light);
    border: 1px solid var(--color-muted);
}

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

.legal-content {
    padding: 80px 0;
    min-height: 60vh;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 32px;
    text-align: center;
}

.legal-content h2 {
    font-size: 24px;
    margin: 32px 0 16px;
}

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

.legal-content ul {
    margin: 16px 0 16px 32px;
}

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

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
}

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

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

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: white;
}

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

.thanks-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: var(--color-muted);
}

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

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

.sticky-cta .btn {
    box-shadow: var(--shadow-medium);
}

@media (max-width: 900px) {
    .nav-main {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--color-light);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 24px;
        transition: right var(--transition);
        box-shadow: var(--shadow-medium);
    }

    .nav-main.active {
        right: 0;
    }

    .nav-toggle {
        display: block;
        z-index: 101;
    }

    .hero-content {
        margin: 24px;
        padding: 32px;
    }

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

    .visual-block {
        flex-direction: column;
        gap: 32px;
    }

    .visual-block-reverse {
        flex-direction: column;
    }

    .visual-block-image {
        min-height: 280px;
        width: 100%;
    }

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

    .footer-grid {
        gap: 32px;
    }

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

@media (max-width: 600px) {
    .hero {
        min-height: 70vh;
    }

    .section {
        padding: 48px 0;
    }

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

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