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

:root {
    --primary-color: #2c1810;
    --secondary-color: #8b4513;
    --accent-color: #d4af37;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --bg-light: #fafafa;
    --bg-dark: #1a1a1a;
    --border-color: #ddd;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: #fff;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    font-family: inherit;
}

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

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

.main-nav {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

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

.nav-menu a {
    color: var(--text-dark);
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: 0.3s;
}

.hero-section {
    display: flex;
    min-height: 70vh;
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 3rem 2rem;
    background: rgba(0, 0, 0, 0.4);
}

.hero-text-block {
    max-width: 700px;
    text-align: center;
    color: var(--text-light);
}

.hero-text-block h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--text-dark);
    font-size: 1.1rem;
    border-radius: 4px;
    transition: transform 0.3s;
}

.cta-hero:hover {
    transform: scale(1.05);
}

.intro-magazine {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.magazine-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.magazine-main-column {
    flex: 2;
}

.magazine-main-column h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.magazine-main-column p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.magazine-sidebar {
    flex: 1;
}

.sidebar-highlight {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 2rem;
    border-radius: 4px;
}

.sidebar-highlight h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.sidebar-highlight ul {
    list-style: none;
}

.sidebar-highlight li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar-highlight li:last-child {
    border-bottom: none;
}

.featured-theaters {
    padding: 5rem 2rem;
    background: #fff;
}

.section-header-offset {
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.section-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-intro {
    font-size: 1.2rem;
    color: #555;
}

.theater-columns {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.theater-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

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

.theater-info {
    padding: 1.5rem;
}

.theater-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.theater-info p {
    margin-bottom: 1rem;
}

.link-arrow {
    color: var(--secondary-color);
    font-weight: bold;
    transition: color 0.3s;
}

.link-arrow:hover {
    color: var(--accent-color);
}

.experience-section {
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: var(--text-light);
}

.experience-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.experience-text {
    flex: 1;
}

.experience-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.experience-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.cta-inline {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--accent-color);
    color: var(--text-dark);
    border-radius: 4px;
    margin-top: 1rem;
    transition: opacity 0.3s;
}

.cta-inline:hover {
    opacity: 0.9;
}

.experience-visual {
    flex: 1;
}

.experience-visual img {
    border-radius: 4px;
}

.services-preview {
    padding: 5rem 2rem;
    background: #fff;
}

.services-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
    text-align: center;
}

.services-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
}

.services-grid-magazine {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-box {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-box p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.btn-service {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: var(--secondary-color);
    color: var(--text-light);
    border-radius: 4px;
    transition: background 0.3s;
}

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

.testimonial-inline {
    padding: 4rem 2rem;
    background: var(--accent-color);
}

.testimonial-quote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote p {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.testimonial-quote cite {
    font-size: 1.1rem;
    font-style: normal;
}

.culture-depth {
    padding: 5rem 2rem;
    background: #fff;
}

.culture-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.culture-column {
    flex: 1;
}

.culture-column h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.culture-column p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.culture-column img {
    border-radius: 4px;
}

.form-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro-text {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    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: var(--secondary-color);
    color: var(--text-light);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.3s;
}

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

.final-cta {
    padding: 5rem 2rem;
    background: var(--secondary-color);
    color: var(--text-light);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: var(--text-dark);
    font-size: 1.2rem;
    border-radius: 4px;
    transition: transform 0.3s;
}

.cta-large:hover {
    transform: scale(1.05);
}

.main-footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 2rem 1rem;
}

.footer-columns {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.footer-col a {
    color: var(--text-light);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
}

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--text-dark);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.sticky-cta a:hover {
    transform: scale(1.05);
}

.thanks-page {
    padding: 5rem 2rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #555;
}

.service-detail-section {
    padding: 4rem 2rem;
    background: #fff;
}

.service-detail-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-detail-box {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 4px;
    border: 2px solid var(--border-color);
}

.service-detail-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-detail-box .price-large {
    font-size: 2.2rem;
    color: var(--accent-color);
    font-weight: bold;
    margin: 1rem 0;
    display: block;
}

.service-detail-box ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-detail-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-detail-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.contact-info-section {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.contact-info-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-wrapper h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-details {
    background: #fff;
    padding: 2rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.contact-details h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.contact-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 4px;
}

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

.contact-item p {
    font-size: 1.1rem;
}

.legal-page {
    padding: 4rem 2rem;
    background: #fff;
}

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

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

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

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

.legal-content li {
    margin-bottom: 0.5rem;
}

.about-hero {
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-content-section {
    padding: 4rem 2rem;
    background: #fff;
}

.about-text-block {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.about-text-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-text-block p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #fff;
        width: 100%;
        padding: 2rem;
        transition: 0.3s;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .magazine-grid,
    .experience-layout,
    .culture-split,
    .theater-columns,
    .services-grid-magazine,
    .service-detail-grid,
    .footer-columns {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta a {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}