:root {
    --primary: #2c1654;
    --secondary: #6b4c9a;
    --accent: #d4af37;
    --light: #f8f5ff;
    --dark: #1a0d2e;
    --text: #333;
    --text-light: #666;
    --bg-fallback: #e8e0f0;
}

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

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

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

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

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

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

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

.ad-disclosure {
    background: var(--dark);
    color: #fff;
    text-align: center;
    padding: 8px 15px;
    font-size: 0.85rem;
}

header {
    background: var(--primary);
    padding: 15px 0;
    position: relative;
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

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

nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

nav a {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44,22,84,0.85) 0%, rgba(26,13,46,0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 40px 20px;
    max-width: 700px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

.btn:hover {
    background: #e6c24a;
    transform: translateY(-2px);
    color: var(--dark);
}

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

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

.editorial-section {
    padding: 60px 0;
}

.editorial-section:nth-child(even) {
    background: var(--light);
}

.editorial-intro {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 30px;
    border-left: 4px solid var(--accent);
    padding-left: 20px;
}

.editorial-heading {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 25px;
    position: relative;
}

.editorial-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin-top: 12px;
}

.editorial-text {
    margin-bottom: 25px;
    text-align: justify;
}

.editorial-image {
    margin: 35px 0;
    background-color: var(--bg-fallback);
    border-radius: 8px;
    overflow: hidden;
}

.editorial-image img {
    display: block;
    width: 100%;
}

.inline-cta {
    background: var(--primary);
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin: 40px 0;
}

.inline-cta h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 25px);
    min-width: 280px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.service-card-image {
    height: 180px;
    background-color: var(--bg-fallback);
    overflow: hidden;
}

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

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

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: 15px;
}

.features-list {
    list-style: none;
    margin: 30px 0;
}

.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.features-list li::before {
    content: '★';
    color: var(--accent);
    font-size: 1.1rem;
}

.testimonial {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    padding: 50px 30px;
    border-radius: 8px;
    margin: 40px 0;
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 6rem;
    position: absolute;
    top: -10px;
    left: 20px;
    color: rgba(255,255,255,0.15);
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

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

.contact-section {
    padding: 60px 0;
    background: var(--light);
}

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

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.contact-item {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
}

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

.contact-item-text h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

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

.contact-form {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    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(--secondary);
}

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

footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 50px 0 20px;
}

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

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

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

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

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

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

.disclaimer {
    background: #f0ebe5;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    font-size: 0.9rem;
    color: var(--text-light);
    border-left: 4px solid var(--accent);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

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

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

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

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

.cookie-reject {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.page-header p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.legal-content h3 {
    color: var(--secondary);
    margin: 25px 0 15px;
    font-size: 1.2rem;
}

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

.legal-content ul {
    margin: 15px 0 15px 25px;
}

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

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

.thanks-box {
    background: var(--light);
    padding: 50px;
    border-radius: 12px;
    max-width: 550px;
}

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

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

.thanks-box p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.about-story {
    padding: 60px 0;
}

.about-image-block {
    margin: 40px 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.about-image-block .image-wrapper {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-fallback);
    border-radius: 8px;
    overflow: hidden;
}

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

.services-intro {
    padding: 50px 0;
    text-align: center;
}

.services-intro h2 {
    color: var(--primary);
    margin-bottom: 15px;
}

.full-services-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding: 0 0 60px;
}

.service-full {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-wrap: wrap;
}

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

.service-full-image {
    flex: 0 0 40%;
    min-width: 280px;
    min-height: 280px;
    background-color: var(--bg-fallback);
}

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

.service-full-content {
    flex: 1;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-full-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-full-content .service-price {
    font-size: 1.6rem;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        display: none;
        width: 100%;
        flex-direction: column;
        padding-top: 20px;
        gap: 15px;
    }

    nav.active {
        display: flex;
    }

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

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

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

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

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

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

    .service-full-image {
        flex: 0 0 auto;
        min-height: 200px;
    }
}
