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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fdfcfb;
}

.hidden {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    padding: 10px 25px;
    border: none;
    background: #e74c3c;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s;
}

.btn-cookie:hover {
    background: #c0392b;
}

.btn-cookie.btn-secondary {
    background: #7f8c8d;
}

.btn-cookie.btn-secondary:hover {
    background: #5d6d7e;
}

.main-header {
    background: #fff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ad-disclosure {
    background: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: #8b4513;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #8b4513;
}

.hero-section {
    position: relative;
    height: 550px;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    background-color: #8b6f47;
}

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

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.hero-subtitle {
    font-size: 22px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.intro-grid {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
    display: flex;
    gap: 50px;
}

.intro-main {
    flex: 2;
}

.intro-main h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #8b4513;
}

.intro-main p {
    margin-bottom: 20px;
    font-size: 17px;
}

.intro-sidebar {
    flex: 1;
}

.highlight-box {
    background: #f4e8d8;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #8b4513;
}

.highlight-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #8b4513;
}

.highlight-box p {
    margin-bottom: 20px;
    font-size: 16px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: #8b4513;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #6d3410;
}

.featured-traditions {
    background: #f9f6f2;
    padding: 80px 30px;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-size: 40px;
    color: #2c3e50;
}

.traditions-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.tradition-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.tradition-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #d4a574;
}

.tradition-card h3 {
    font-size: 24px;
    margin: 20px 20px 10px;
    color: #8b4513;
}

.tradition-card p {
    margin: 0 20px 20px;
    font-size: 15px;
    line-height: 1.6;
}

.services-preview {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
}

.services-intro {
    margin-bottom: 50px;
}

.services-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-intro p {
    font-size: 17px;
    max-width: 700px;
}

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

.service-item {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 30px;
    border: 2px solid #e8dcc7;
    border-radius: 8px;
    position: relative;
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #8b4513;
}

.service-item p {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.price-tag {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
}

.btn-service {
    width: 100%;
    padding: 12px;
    background: #8b4513;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.3s;
}

.btn-service:hover {
    background: #6d3410;
}

.form-section {
    background: #f4e8d8;
    padding: 80px 30px;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: #8b4513;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-field input,
.form-field textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #8b4513;
}

.form-field input[readonly] {
    background: #f5f5f5;
    cursor: not-allowed;
}

.btn-submit {
    padding: 15px;
    background: #8b4513;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #6d3410;
}

.culture-insights {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
}

.insight-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #8b4513;
}

.insight-text p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
}

.insight-image {
    flex: 1;
    background-color: #d4a574;
}

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

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 30px 30px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

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

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

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

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

.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-col p {
    margin-bottom: 10px;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #95a5a6;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    font-style: italic;
}

@media (max-width: 768px) {
    .intro-grid {
        flex-direction: column;
    }

    .traditions-columns {
        flex-direction: column;
    }

    .insight-layout {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

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