:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #7b68ee;
    --accent-light: #9d8df1;
    --gold: #c9a227;
    --text: #e8e8e8;
    --text-dark: #333;
    --bg-light: #f5f3f0;
    --bg-dark: #0f0f23;
    --white: #ffffff;
}

* {
    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(--bg-dark);
}

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

.ad-disclosure {
    background-color: var(--secondary);
    color: var(--text);
    text-align: center;
    padding: 8px 15px;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--accent);
}

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

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-light);
    text-decoration: none;
    letter-spacing: 1px;
}

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

nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    padding: 8px 0;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
}

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

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

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

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.hero-asymmetric {
    display: flex;
    flex-direction: column;
    max-width: 650px;
    margin-left: 8%;
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: var(--text);
    max-width: 520px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
}

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

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

.section {
    padding: 80px 0;
}

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

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

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

.section-title {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: inherit;
}

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

.section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 50px;
    opacity: 0.85;
    max-width: 600px;
}

.offset-left {
    margin-left: 5%;
}

.offset-right {
    margin-left: auto;
    margin-right: 5%;
}

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

.service-card {
    background-color: var(--secondary);
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 280px;
    max-width: 380px;
    transition: transform 0.3s;
    flex-grow: 1;
}

.section-light .service-card {
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

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

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

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

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

.section-light .service-card h3 {
    color: var(--primary);
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.section-light .service-card p {
    color: var(--text-dark);
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
}

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

.asymmetric-block:nth-child(even) {
    flex-direction: row-reverse;
}

.asymmetric-text {
    flex: 1;
    max-width: 550px;
}

.asymmetric-image {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.asymmetric-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.image-offset {
    position: relative;
    margin-top: -30px;
    margin-left: 30px;
}

.feature-list {
    list-style: none;
    margin-top: 25px;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.feature-list li::before {
    content: "★";
    position: absolute;
    left: 0;
    color: var(--gold);
}

.testimonials {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--primary) 0%, var(--bg-dark) 100%);
}

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

.testimonial-card {
    background-color: var(--secondary);
    padding: 35px;
    border-radius: 8px;
    max-width: 380px;
    flex: 1;
    min-width: 280px;
    position: relative;
}

.testimonial-card::before {
    content: "„";
    font-size: 4rem;
    color: var(--accent);
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.3;
}

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

.testimonial-author {
    font-weight: 600;
    color: var(--gold);
}

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

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

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--secondary);
    padding: 40px;
    border-radius: 8px;
}

.section-light .form-container {
    background-color: var(--white);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

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

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

.section-light .form-group label {
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--accent);
    border-radius: 4px;
    background-color: var(--primary);
    color: var(--text);
    font-size: 1rem;
}

.section-light .form-group input,
.section-light .form-group select,
.section-light .form-group textarea {
    background-color: var(--bg-light);
    color: var(--text-dark);
    border-color: #ccc;
}

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

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

footer {
    background-color: var(--primary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--secondary);
}

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

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

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

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

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

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

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

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--secondary);
    font-size: 0.9rem;
    opacity: 0.8;
}

.disclaimer {
    background-color: var(--secondary);
    padding: 30px;
    margin-top: 40px;
    border-radius: 4px;
    font-size: 0.85rem;
    line-height: 1.8;
    opacity: 0.9;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.legal-content h1 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--accent-light);
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--gold);
}

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

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

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

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

.contact-block {
    flex: 1;
    min-width: 250px;
    background-color: var(--secondary);
    padding: 30px;
    border-radius: 8px;
}

.contact-block h3 {
    color: var(--accent-light);
    margin-bottom: 15px;
}

.contact-block p {
    margin-bottom: 10px;
}

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

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

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

.thanks-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.thanks-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 20px;
}

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

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

.cookie-content {
    max-width: 1200px;
    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 p {
    font-size: 0.95rem;
}

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

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

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

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

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

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

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

.lunar-calendar {
    background-color: var(--secondary);
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.lunar-phases {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.lunar-phase {
    text-align: center;
    padding: 15px;
}

.lunar-phase-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.about-intro {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.about-text {
    flex: 1.2;
}

.about-image {
    flex: 1;
    background-color: var(--secondary);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: var(--secondary);
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.value-card h3 {
    color: var(--accent-light);
    margin-bottom: 15px;
}

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

    .asymmetric-block:nth-child(even) {
        flex-direction: column;
    }

    .asymmetric-text,
    .asymmetric-image {
        max-width: 100%;
    }

    .image-offset {
        margin-top: 0;
        margin-left: 0;
    }

    .service-card {
        width: calc(50% - 15px);
    }

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

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

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

    nav.active {
        display: flex;
    }

    nav a {
        padding: 12px 0;
        border-bottom: 1px solid var(--secondary);
        width: 100%;
    }

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

    .hero-asymmetric {
        margin-left: 0;
    }

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

    .service-card {
        width: 100%;
    }

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

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

    .offset-left,
    .offset-right {
        margin-left: 0;
        margin-right: 0;
    }
}
