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

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

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.main-nav {
    background-color: #ffffff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-links a {
    text-decoration: none;
    color: #444;
    font-size: 16px;
    transition: color 0.3s;
}

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

.editorial-container {
    max-width: 100%;
    background-color: #ffffff;
}

.story-hero {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #1a1a1a;
}

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

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

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

.hero-overlay p {
    font-size: 20px;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.story-content {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.content-narrow {
    max-width: 680px;
    width: 100%;
}

.lead-paragraph {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #333;
}

.content-narrow h2 {
    font-size: 32px;
    font-weight: normal;
    margin: 50px 0 25px 0;
    color: #1a1a1a;
}

.content-narrow p {
    margin-bottom: 20px;
    font-size: 18px;
}

.inline-image {
    margin: 40px 0;
    background-color: #f5f5f5;
}

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

.inline-image figcaption {
    padding: 15px;
    font-size: 14px;
    color: #666;
    font-style: italic;
    text-align: center;
}

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

.cta-link {
    display: inline-block;
    padding: 15px 35px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #000000;
}

.testimonial-inline {
    margin: 40px 0;
    padding: 30px;
    border-left: 4px solid #2c2c2c;
    background-color: #f9f9f9;
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
}

.testimonial-inline cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-size: 14px;
    color: #666;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.service-card {
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.service-card h3 {
    font-size: 24px;
    margin: 20px 20px 15px 20px;
    font-weight: normal;
}

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

.service-card .duration {
    font-size: 14px;
    color: #666;
}

.service-card .price {
    font-size: 28px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 20px;
}

.select-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
    padding: 12px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #000000;
}

.form-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
}

.form-section h2 {
    margin-top: 0;
}

.registration-form {
    margin-top: 30px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    font-size: 16px;
    font-family: inherit;
}

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

.submit-btn {
    padding: 15px 40px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #000000;
}

.disclaimer-section {
    margin: 50px 0;
    padding: 25px;
    background-color: #fff9e6;
    border-left: 4px solid #d4a017;
}

.disclaimer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.disclaimer-section p {
    font-size: 14px;
    line-height: 1.6;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 50px 40px 20px 40px;
    margin-top: 60px;
}

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p,
.footer-section ul {
    font-size: 14px;
    line-height: 1.8;
}

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

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

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    display: none;
    z-index: 1000;
}

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

.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;
    font-size: 14px;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.8;
}

.cookie-btn.accept {
    background-color: #4CAF50;
    color: #ffffff;
}

.cookie-btn.reject {
    background-color: #666;
    color: #ffffff;
}

.thanks-page {
    text-align: center;
    padding: 100px 20px;
}

.thanks-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.thanks-page p {
    font-size: 18px;
    margin-bottom: 15px;
}

.thanks-page a {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 35px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s;
}

.thanks-page a:hover {
    background-color: #000000;
}

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

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

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .content-narrow h2 {
        font-size: 26px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}