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

:root {
    --primary-color: #2c1654;
    --secondary-color: #5b3a8f;
    --accent-color: #8b6fbd;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f7fc;
    --bg-white: #ffffff;
    --border-color: #e0d9ee;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.75;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-notice {
    background-color: var(--bg-light);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.editorial-container {
    max-width: 100%;
}

.hero-editorial {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--bg-white);
    z-index: 10;
    max-width: 800px;
    padding: 2rem;
}

.hero-text-overlay::before {
    content: '';
    position: absolute;
    inset: -3rem;
    background: rgba(44, 22, 84, 0.4);
    backdrop-filter: blur(4px);
    z-index: -1;
}

.hero-text-overlay h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text-overlay .lead {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.content-narrow h2 {
    font-size: 2rem;
    font-weight: 400;
    margin: 3rem 0 1.5rem;
    color: var(--primary-color);
}

.content-narrow h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 2rem 0 1rem;
    color: var(--secondary-color);
}

.content-narrow p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.inline-image {
    margin: 3rem 0;
    background-color: var(--bg-light);
}

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

.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.testimonial-inline blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.9rem;
    color: var(--text-light);
}

.cta-inline {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

.cta-inline h3 {
    color: var(--bg-white);
    margin: 0 0 1rem 0;
}

.cta-inline p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.services-preview {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

.service-card {
    background-color: var(--bg-white);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.service-card h3 {
    color: var(--primary-color);
    margin: 0 0 1rem 0;
    font-size: 1.4rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.service-meta .price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.service-meta .duration {
    font-size: 0.9rem;
    color: var(--text-light);
}

.link-cta {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 2rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    transition: background-color 0.3s;
}

.link-cta:hover {
    background-color: var(--primary-color);
}

.form-section {
    background-color: var(--bg-white);
    padding: 4rem 0;
}

.consultation-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    font-family: inherit;
    font-size: 1rem;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-box {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
}

.disclaimer-box h3 {
    margin: 0 0 1rem 0;
    color: var(--primary-color);
}

.disclaimer-box p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.site-footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.9);
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--bg-white);
    font-weight: 500;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.btn-accept {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.btn-accept:hover {
    opacity: 0.9;
}

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

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

.cookie-link {
    color: var(--bg-white);
    text-decoration: underline;
    font-size: 0.9rem;
}

.contact-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-info {
    background-color: var(--bg-light);
    padding: 2rem;
    margin-bottom: 2rem;
}

.contact-info h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.contact-detail {
    margin-bottom: 1.5rem;
}

.contact-detail h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-detail p {
    color: var(--text-dark);
    line-height: 1.6;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.legal-page h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--secondary-color);
}

.legal-page h3 {
    font-size: 1.3rem;
    margin: 2rem 0 0.75rem;
    color: var(--text-dark);
}

.legal-page p,
.legal-page li {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-page ul,
.legal-page ol {
    margin: 1rem 0 1.5rem 2rem;
}

.thanks-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
}

.thanks-page h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-page p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.thanks-page .back-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    transition: background-color 0.3s;
}

.thanks-page .back-link:hover {
    background-color: var(--primary-color);
}

@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-text-overlay h1 {
        font-size: 2rem;
    }

    .hero-text-overlay .lead {
        font-size: 1.1rem;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
