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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fdfbf7;
}

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

.hidden {
    display: none !important;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: #e8b44c;
    color: #2c3e50;
}

.btn-cookie:hover {
    background-color: #d49d35;
}

.btn-cookie.secondary {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-cookie.secondary:hover {
    background-color: rgba(255,255,255,0.1);
}

.header-nav {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #e8b44c;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
    padding: 4px 12px;
    border-left: 2px solid #e8b44c;
}

.editorial-layout {
    background-color: #fdfbf7;
}

.story-flow {
    max-width: 100%;
}

.hero-editorial {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-bottom: 60px;
}

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

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

.hero-text-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.hero-text-overlay h1 {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-text-overlay p {
    font-size: 22px;
    line-height: 1.6;
}

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

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

.intro-text p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.intro-text h2 {
    font-size: 32px;
    margin: 40px 0 20px 0;
    color: #2c3e50;
}

.inline-image-block {
    margin: 60px 0;
    background-color: #f4f1eb;
    padding: 30px;
    border-radius: 8px;
}

.inline-image-block img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    margin-bottom: 16px;
}

.image-caption {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
    text-align: center;
}

.story-section {
    margin: 50px 0;
}

.story-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.story-section p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.cta-inline {
    text-align: center;
    margin: 50px 0;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #e8b44c;
    color: #2c3e50;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #d49d35;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 180, 76, 0.3);
}

.insight-block {
    background-color: #f9f6f1;
    border-left: 4px solid #e8b44c;
    padding: 30px;
    margin: 50px 0;
}

.insight-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.insight-block p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.testimonial-inline {
    margin: 60px 0;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.testimonial-inline blockquote {
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    color: #34495e;
    margin-bottom: 20px;
}

.testimonial-inline cite {
    display: block;
    font-size: 16px;
    color: #7f8c8d;
    font-style: normal;
}

.services-reveal {
    margin: 80px 0;
}

.services-reveal h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.service-item {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.service-item h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.service-features li {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e8b44c;
    font-weight: bold;
    font-size: 18px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #e8b44c;
}

.select-service {
    padding: 12px 28px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

.form-section {
    margin: 60px 0;
    background-color: #f9f6f1;
    padding: 50px 40px;
    border-radius: 8px;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: #2c3e50;
}

.tradition-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0ddd5;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: border-color 0.3s ease;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e8b44c;
}

.selected-service-display {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 24px;
    border-left: 4px solid #e8b44c;
}

.selected-service-display p {
    font-size: 16px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.tradition-form button[type="submit"] {
    width: 100%;
    margin-top: 10px;
}

.closing-thoughts {
    margin: 80px 0;
    padding-top: 60px;
    border-top: 2px solid #e0ddd5;
}

.closing-thoughts h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.closing-thoughts p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 60px 0;
}

.contact-item {
    background-color: #f9f6f1;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #e8b44c;
}

.contact-item h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px 0;
    margin-top: 80px;
}

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

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

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #e8b44c;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #e8b44c;
}

.disclaimer {
    background-color: rgba(255,255,255,0.05);
    padding: 24px;
    border-radius: 4px;
    margin-bottom: 30px;
    border-left: 4px solid #e8b44c;
}

.disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
}

.disclaimer strong {
    color: #e8b44c;
}

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

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

@media (max-width: 768px) {
    .hero-text-overlay h1 {
        font-size: 32px;
    }

    .hero-text-overlay p {
        font-size: 18px;
    }

    .main-nav {
        flex-direction: column;
        gap: 15px;
        align-items: flex-end;
    }

    .content-narrow {
        padding: 20px 16px;
    }

    .intro-text p,
    .story-section p,
    .closing-thoughts p {
        font-size: 17px;
    }

    .service-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .select-service {
        width: 100%;
    }

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