:root {
    --primary: #2d1b4e;
    --secondary: #8b5a8c;
    --accent: #d4a574;
    --light: #f8f5f0;
    --dark: #1a1a2e;
    --text: #3d3d3d;
    --white: #ffffff;
    --shadow: rgba(45, 27, 78, 0.12);
}

* {
    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-color: var(--white);
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

.top-bar {
    background-color: var(--primary);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ad-disclosure {
    opacity: 0.9;
}

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

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

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

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

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

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

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

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

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

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

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

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-color: var(--dark);
    overflow: hidden;
}

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

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

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 650px;
    padding: 60px 0;
}

.hero-subtitle {
    color: var(--accent);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 36px;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-primary:hover {
    background-color: #c49464;
    transform: translateY(-2px);
}

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

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

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

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

.section {
    padding: 80px 0;
}

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

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

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

.section-title {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 700;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 48px;
}

.section-dark .section-subtitle {
    color: var(--accent);
}

.intro-block {
    padding: 100px 0;
}

.intro-text {
    font-size: 1.35rem;
    line-height: 2;
    color: var(--text);
}

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

.split-section {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.split-content {
    flex: 1;
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-image {
    flex: 1;
    background-color: var(--secondary);
    min-height: 400px;
}

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

.story-section {
    padding: 100px 0;
}

.story-content {
    max-width: 700px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 32px;
}

.story-content p {
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.story-highlight {
    background-color: var(--light);
    padding: 32px;
    border-left: 4px solid var(--accent);
    margin: 40px 0;
    font-style: italic;
    font-size: 1.2rem;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.benefit-card {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 280px;
    background-color: var(--white);
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: 0 4px 24px var(--shadow);
    transition: transform 0.3s ease;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.benefit-card p {
    color: var(--text);
    line-height: 1.7;
}

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

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

.testimonial-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--white);
    font-style: italic;
}

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

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

.testimonial-info h4 {
    color: var(--white);
    font-size: 1rem;
}

.testimonial-info span {
    color: var(--accent);
    font-size: 0.9rem;
}

.services-showcase {
    padding: 100px 0;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-item {
    display: flex;
    gap: 48px;
    align-items: center;
    padding: 40px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 32px var(--shadow);
}

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

.service-image {
    flex: 0 0 320px;
    height: 240px;
    background-color: var(--light);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

.service-price span {
    font-size: 1rem;
    color: var(--text);
    font-weight: 400;
}

.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

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

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 8px 40px var(--shadow);
}

.form-wrapper h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
    text-align: center;
}

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

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

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

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

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

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

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

.inline-cta {
    background-color: var(--accent);
    color: var(--dark);
    padding: 40px;
    border-radius: 8px;
    margin: 48px 0;
    text-align: center;
}

.inline-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.inline-cta p {
    margin-bottom: 24px;
}

.about-intro {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.about-text {
    flex: 1;
}

.about-text h1 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    flex: 0 0 400px;
    height: 500px;
    background-color: var(--light);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.value-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    display: flex;
    gap: 24px;
}

.value-number {
    flex: 0 0 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.value-content h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.value-content p {
    color: var(--text);
    line-height: 1.7;
}

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

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.contact-info p {
    margin-bottom: 32px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

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

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

.contact-item p {
    margin: 0;
    font-size: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

.disclaimer {
    background-color: #f0f0f0;
    padding: 24px;
    margin-top: 40px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.7;
}

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

.cookie-banner.active {
    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-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

.cookie-accept:hover {
    background-color: #c49464;
}

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

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

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

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

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

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

.thanks-content p {
    font-size: 1.15rem;
    margin-bottom: 32px;
    color: var(--text);
    line-height: 1.8;
}

.page-header {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.15rem;
    opacity: 0.9;
}

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

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

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

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

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

.legal-content ul li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding: 60px 0;
}

.service-card {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 280px;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px var(--shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

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

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

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

.service-card-content h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 12px;
}

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

.service-card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

@media (max-width: 992px) {
    .split-section {
        flex-direction: column;
    }

    .split-content {
        padding: 48px 24px;
    }

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

    .about-image {
        flex: 0 0 auto;
        width: 100%;
        height: 350px;
    }

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

    .service-item {
        flex-direction: column !important;
    }

    .service-image {
        flex: 0 0 auto;
        width: 100%;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: 0 4px 20px var(--shadow);
        display: none;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 24px;
        gap: 0;
    }

    .main-nav li {
        border-bottom: 1px solid #eee;
    }

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

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

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

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

    .footer-grid {
        gap: 32px;
    }

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

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

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

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