* {
    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: 0.75rem;
    color: #666;
    border-bottom: 1px solid #ddd;
}

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

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

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

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

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

.editorial-content {
    max-width: 100%;
    margin: 0 auto;
}

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #d4d4d4;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-text-overlay {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 700px;
    text-align: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px;
}

.hero-text-overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-intro {
    font-size: 1.15rem;
    line-height: 1.6;
}

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

.content-block {
    padding: 60px 0;
}

.content-block h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    line-height: 1.4;
}

.content-block p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.inline-image {
    width: 100%;
    margin: 40px 0;
    display: block;
    background-color: #e8e8e8;
}

.insight-block {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.insight-block h2 {
    font-size: 1.9rem;
    margin-bottom: 25px;
}

.insight-block p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

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

.text-link-cta {
    font-size: 1.1rem;
    color: #1a1a1a;
    text-decoration: underline;
    font-weight: bold;
    transition: opacity 0.3s;
}

.text-link-cta:hover {
    opacity: 0.7;
}

.testimonial-editorial {
    padding: 80px 0;
}

.testimonial-editorial blockquote {
    border-left: 4px solid #333;
    padding-left: 30px;
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.6;
}

.testimonial-editorial cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 1rem;
    color: #666;
}

.services-editorial {
    padding: 60px 0;
}

.services-editorial h2 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.service-card-editorial {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 35px;
    margin: 40px 0;
}

.service-card-editorial h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card-editorial p {
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.service-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1a1a1a;
    margin: 20px 0;
}

.select-service-btn {
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section-editorial {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.form-section-editorial h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.booking-form {
    margin-top: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    background-color: #fff;
}

.submit-btn {
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    padding: 40px 0;
    background-color: #f0f0f0;
}

.disclaimer-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

.main-footer {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 50px 40px 20px;
}

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

.footer-section h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

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

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

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    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;
    margin: 0;
    font-size: 0.95rem;
}

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

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

.cookie-btn.accept {
    background-color: #fff;
    color: #1a1a1a;
}

.cookie-btn.reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

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

    .hero-intro {
        font-size: 1rem;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}