:root {
    --primary: #6B4E9B;
    --primary-dark: #503A75;
    --secondary: #E8DFF5;
    --accent: #9B6B8E;
    --text: #2D2A32;
    --text-light: #5A5660;
    --bg: #FDFBFF;
    --bg-alt: #F5F0FA;
    --white: #FFFFFF;
    --border: #E0D6EB;
    --success: #4A9B6B;
    --shadow: rgba(107, 78, 155, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

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

header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    background: var(--secondary);
    padding: 4px 10px;
    border-radius: 4px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

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

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text);
    margin: 5px 0;
    transition: 0.3s;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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: 650px;
    padding: 60px 40px;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

.btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow);
}

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

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

.btn-large {
    padding: 18px 42px;
    font-size: 1.1rem;
}

.section {
    padding: 80px 0;
}

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

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

.section-dark h2,
.section-dark p {
    color: var(--white);
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

.story-text {
    flex: 1;
}

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

.story-image img {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.insight-box {
    background: var(--white);
    border-left: 4px solid var(--primary);
    padding: 30px;
    margin: 40px 0;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 4px 15px var(--shadow);
}

.insight-box h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    flex: 1 1 280px;
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.testimonial-section {
    padding: 80px 0;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    color: var(--secondary);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    padding-left: 40px;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary);
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
}

.testimonial-name {
    font-weight: 600;
}

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

.services-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: 30px 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 25px var(--shadow);
}

.service-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.service-info p {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-light);
}

.cta-section {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
}

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

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
    color: var(--white);
}

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

.cta-section .btn:hover {
    background: var(--bg);
    transform: translateY(-3px);
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px var(--shadow);
}

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

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

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

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

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

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

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.contact-item {
    flex: 1 1 250px;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary);
}

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

.email-display {
    color: var(--text);
    cursor: default;
}

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

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

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.disclaimer {
    background: var(--bg-alt);
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
    font-size: 0.9rem;
    color: var(--text-light);
    border: 1px solid var(--border);
}

.disclaimer h4 {
    color: var(--text);
    margin-bottom: 15px;
}

.references {
    margin-top: 40px;
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
}

.references h4 {
    margin-bottom: 15px;
}

.references ol {
    padding-left: 20px;
}

.references li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.references a {
    word-break: break-all;
}

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

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

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

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
}

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

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

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

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

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

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

.thanks-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--bg-alt) 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 15px;
}

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

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

.content-page h2 {
    font-size: 1.6rem;
    margin: 40px 0 20px;
    color: var(--text);
}

.content-page h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    color: var(--text);
}

.content-page p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.content-page ul {
    margin: 15px 0 15px 30px;
    color: var(--text-light);
}

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

.about-story {
    display: flex;
    gap: 50px;
    align-items: center;
    margin: 50px 0;
}

.about-story-image {
    flex: 1;
    background: var(--secondary);
    border-radius: 12px;
    min-height: 400px;
    overflow: hidden;
}

.about-story-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.about-story-text {
    flex: 1;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.value-card {
    flex: 1 1 280px;
    padding: 30px;
    background: var(--bg-alt);
    border-radius: 12px;
}

.value-card h3 {
    color: var(--primary);
    margin-bottom: 12px;
}

.inline-cta {
    background: var(--secondary);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 50px 0;
}

.inline-cta h3 {
    margin-bottom: 15px;
}

.inline-cta p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 30px;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-cta .btn {
    box-shadow: 0 6px 25px var(--shadow);
}

.image-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px 0;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--secondary);
}

.image-section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.image-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107,78,155,0.85) 0%, rgba(155,107,142,0.75) 100%);
}

.image-section-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 60px;
    max-width: 700px;
}

.image-section-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.image-section-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    color: var(--white);
}

@media (max-width: 900px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .nav-toggle {
        display: block;
    }

    nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    nav.active {
        max-height: 300px;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }

    nav a {
        display: block;
        padding: 12px 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .story-block,
    .story-block.reverse {
        flex-direction: column;
        gap: 30px;
    }

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

    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

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

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

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

    .footer-grid {
        gap: 30px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero {
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .sticky-cta {
        right: 15px;
        bottom: 100px;
    }
}
