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

:root {
    --deep-space: #0a0e27;
    --cosmic-blue: #1a2847;
    --star-white: #f4f4f9;
    --nebula-purple: #6b4c9a;
    --accent-gold: #d4af37;
    --soft-gray: #e8e8ee;
    --text-dark: #2c3e50;
    --overlay: rgba(10, 14, 39, 0.85);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--deep-space);
    color: var(--star-white);
    padding: 1.5rem;
    display: none;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content {
    max-width: 900px;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

.cookie-accept {
    background: var(--accent-gold);
    color: var(--deep-space);
}

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

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

nav {
    background: var(--deep-space);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

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

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--star-white);
    transition: all 0.3s;
}

.editorial-wrapper {
    max-width: 780px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-editorial {
    text-align: center;
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, var(--deep-space) 0%, var(--cosmic-blue) 100%);
    color: var(--star-white);
    margin-bottom: 3rem;
}

.hero-editorial h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
}

.hero-editorial .subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-image {
    width: 100%;
    max-width: 900px;
    height: 400px;
    background: linear-gradient(to bottom, rgba(10, 14, 39, 0.4), rgba(10, 14, 39, 0.7)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%230a0e27" width="1200" height="600"/><circle fill="%23d4af37" cx="200" cy="100" r="2"/><circle fill="%23f4f4f9" cx="400" cy="150" r="1.5"/><circle fill="%23f4f4f9" cx="700" cy="80" r="1"/><circle fill="%23d4af37" cx="900" cy="200" r="2"/><circle fill="%23f4f4f9" cx="300" cy="300" r="1"/><circle fill="%23f4f4f9" cx="1000" cy="350" r="1.5"/><circle fill="%23d4af37" cx="500" cy="450" r="2"/><circle fill="%23f4f4f9" cx="800" cy="500" r="1"/><circle fill="%23f4f4f9" cx="150" cy="400" r="1.5"/><circle fill="%23d4af37" cx="1100" cy="150" r="1"/><ellipse fill="%236b4c9a" opacity="0.6" cx="600" cy="300" rx="200" ry="150"/></svg>');
    background-size: cover;
    background-position: center;
    margin: 2rem auto;
    border-radius: 8px;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.article-content h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: var(--deep-space);
    font-weight: 700;
}

.article-content h3 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--cosmic-blue);
    font-weight: 600;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.inline-image {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, var(--cosmic-blue), var(--nebula-purple));
    margin: 2.5rem 0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--star-white);
    font-size: 1.1rem;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><rect fill="%231a2847" width="800" height="400"/><path fill="%23d4af37" opacity="0.3" d="M0,200 Q200,100 400,200 T800,200 L800,400 L0,400 Z"/><circle fill="%23f4f4f9" cx="600" cy="100" r="40" opacity="0.9"/><circle fill="%23f4f4f9" cx="605" cy="95" r="35" opacity="0.7"/></svg>');
    background-size: cover;
}

.inline-cta {
    background: var(--accent-gold);
    color: var(--deep-space);
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    display: inline-block;
    margin: 2rem 0;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.inline-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.testimonial-box {
    background: var(--soft-gray);
    padding: 2rem;
    margin: 2.5rem 0;
    border-left: 4px solid var(--nebula-purple);
    border-radius: 4px;
    font-style: italic;
}

.testimonial-box .author {
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--cosmic-blue);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: var(--star-white);
    border: 2px solid var(--soft-gray);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
}

.service-card:hover {
    border-color: var(--nebula-purple);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(107, 76, 154, 0.2);
}

.service-card h3 {
    color: var(--deep-space);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card .description {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-card .price {
    font-size: 1.8rem;
    color: var(--nebula-purple);
    font-weight: 700;
    margin-bottom: 1rem;
}

.select-service-btn {
    background: var(--cosmic-blue);
    color: var(--star-white);
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.select-service-btn:hover {
    background: var(--nebula-purple);
}

.service-card.selected {
    border-color: var(--accent-gold);
    background: linear-gradient(to bottom, var(--star-white), #fffdf0);
}

.form-section {
    background: var(--soft-gray);
    padding: 3rem 2rem;
    margin: 3rem 0;
    border-radius: 8px;
}

.form-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--deep-space);
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--cosmic-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    background: var(--accent-gold);
    color: var(--deep-space);
    border: none;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--nebula-purple);
    color: var(--star-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(107, 76, 154, 0.5);
    z-index: 999;
    transition: all 0.3s;
}

.sticky-cta:hover {
    transform: scale(1.05);
    background: var(--accent-gold);
    color: var(--deep-space);
}

.urgency-banner {
    background: linear-gradient(135deg, var(--nebula-purple), var(--cosmic-blue));
    color: var(--star-white);
    padding: 1.5rem;
    text-align: center;
    margin: 2rem 0;
    border-radius: 6px;
    font-weight: 600;
}

.split-section {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    align-items: center;
}

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
    height: 300px;
    background: linear-gradient(45deg, var(--cosmic-blue), var(--nebula-purple));
    border-radius: 8px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 400"><rect fill="%231a2847" width="600" height="400"/><polygon fill="%23d4af37" opacity="0.4" points="300,50 320,100 370,110 330,150 340,200 300,170 260,200 270,150 230,110 280,100"/></svg>');
    background-size: cover;
    background-position: center;
}

footer {
    background: var(--deep-space);
    color: var(--star-white);
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

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

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

.footer-column h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column a {
    color: var(--star-white);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(244, 244, 249, 0.2);
    font-size: 0.9rem;
    opacity: 0.8;
}

.page-header {
    background: linear-gradient(135deg, var(--deep-space), var(--cosmic-blue));
    color: var(--star-white);
    padding: 4rem 2rem 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.contact-info {
    background: var(--soft-gray);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item h3 {
    color: var(--cosmic-blue);
    margin-bottom: 0.5rem;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    color: var(--deep-space);
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.legal-content h3 {
    color: var(--cosmic-blue);
    margin: 1.5rem 0 0.8rem;
    font-size: 1.3rem;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
}

.thanks-icon {
    font-size: 5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.thanks-container h1 {
    color: var(--deep-space);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.thanks-container p {
    font-size: 1.2rem;
    color: var(--cosmic-blue);
    max-width: 600px;
    margin-bottom: 2rem;
}

.back-home {
    background: var(--accent-gold);
    color: var(--deep-space);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.back-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

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

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--deep-space);
        flex-direction: column;
        padding: 2rem;
        display: none;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

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

    .hero-editorial .subtitle {
        font-size: 1.1rem;
    }

    .editorial-wrapper {
        padding: 2rem 1.5rem;
    }

    .article-content h2 {
        font-size: 1.6rem;
    }

    .split-section {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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