/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

/* Editorial Navigation */
.nav-editorial {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

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

/* Editorial Main Layout */
.editorial-main {
    background-color: #fff;
}

/* Hero Editorial */
.hero-editorial {
    margin-bottom: 60px;
}

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

.hero-image {
    width: 100%;
    height: 600px;
}

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

.hero-content-narrow h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-intro {
    font-size: 22px;
    line-height: 1.6;
    color: #4a4a4a;
    font-style: italic;
}

/* Content Narrow - Editorial Layout */
.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

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

.opening-text {
    font-size: 21px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 30px;
    font-style: italic;
}

.content-narrow h2 {
    font-size: 34px;
    line-height: 1.3;
    margin-top: 50px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.content-narrow h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #2a2a2a;
    font-weight: 600;
}

/* Inline Image Block */
.inline-image-block {
    margin: 50px 0;
    background-color: #f5f5f5;
}

.inline-image {
    width: 100%;
    height: 500px;
}

.image-caption {
    padding: 16px 20px;
    font-size: 15px;
    color: #666;
    font-style: italic;
    text-align: center;
    background-color: #f5f5f5;
}

/* Insight Box */
.insight-box {
    background-color: #f9f7f4;
    border-left: 4px solid #d4a574;
    padding: 30px;
    margin: 40px 0;
}

.insight-box h3 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.insight-box p {
    margin-bottom: 0;
    font-size: 17px;
    color: #3a3a3a;
}

/* Services Preview - Inline Cards */
.services-preview {
    margin: 50px 0;
}

.service-card-inline {
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
    padding: 30px;
    margin-bottom: 24px;
    transition: box-shadow 0.3s;
}

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

.service-card-inline h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 22px;
    color: #1a1a1a;
}

.service-card-inline p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.6;
}

.price-tag {
    font-size: 20px;
    font-weight: 700;
    color: #2a5a2a;
    margin-bottom: 16px;
    font-family: 'Arial', sans-serif;
}

.btn-primary {
    background-color: #3a3a3a;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

.btn-primary:hover {
    background-color: #1a1a1a;
}

/* Testimonial Block */
.testimonial-block {
    margin: 40px 0;
    padding: 30px 40px;
    border-left: 3px solid #d4a574;
    background-color: #f9f9f9;
}

.testimonial-block p {
    font-size: 19px;
    line-height: 1.7;
    font-style: italic;
    color: #2a2a2a;
    margin-bottom: 12px;
}

.testimonial-block cite {
    font-size: 15px;
    color: #666;
    font-style: normal;
}

/* Form Section */
.form-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #f7f7f7;
    border: 1px solid #e0e0e0;
}

.form-section h3 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 26px;
}

.editorial-form {
    max-width: 100%;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #2a2a2a;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    background-color: #fff;
}

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

.btn-submit {
    background-color: #2a5a2a;
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
}

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

/* Disclaimer Section */
.disclaimer-section {
    margin: 60px 0 40px;
    padding: 24px;
    background-color: #fff9e6;
    border: 1px solid #e6d89f;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}

/* Footer Editorial */
.footer-editorial {
    background-color: #2a2a2a;
    color: #ccc;
    padding: 40px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 720px;
    margin: 0 auto;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: center;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

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

.footer-copy {
    text-align: center;
    font-size: 13px;
    color: #999;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.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 {
    margin: 0;
    font-size: 14px;
    flex: 1;
    font-family: 'Arial', sans-serif;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

.btn-cookie-accept {
    background-color: #4a8a4a;
    color: #fff;
}

.btn-cookie-accept:hover {
    background-color: #3a7a3a;
}

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

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

/* About Page Specific */
.about-hero {
    padding: 80px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

.about-hero h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.team-section {
    margin: 60px 0;
}

.team-member {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.team-member:last-child {
    border-bottom: none;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.team-member .role {
    font-size: 16px;
    color: #666;
    margin-bottom: 16px;
    font-style: italic;
}

/* Services Page */
.services-header {
    padding: 80px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

.services-header h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.service-item {
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
    padding: 40px;
    margin-bottom: 30px;
}

.service-item h2 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2a5a2a;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.service-item ul {
    margin: 20px 0;
    padding-left: 24px;
}

.service-item li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

/* Contact Page */
.contact-header {
    padding: 80px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

.contact-header h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 20px;
}

.contact-info {
    background-color: #fafafa;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid #e0e0e0;
}

.contact-info h2 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.info-item {
    margin-bottom: 20px;
}

.info-label {
    font-weight: 600;
    color: #2a2a2a;
    display: block;
    margin-bottom: 4px;
    font-family: 'Arial', sans-serif;
}

.info-value {
    color: #4a4a4a;
    font-size: 16px;
}

/* Thanks Page */
.thanks-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 120px 20px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.btn-back {
    display: inline-block;
    background-color: #3a3a3a;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    margin-top: 20px;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

.btn-back:hover {
    background-color: #1a1a1a;
}

/* Legal Pages */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

.legal-container h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal-container h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2a2a2a;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #3a3a3a;
}

.legal-container ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-container li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content-narrow h1 {
        font-size: 36px;
    }

    .hero-intro {
        font-size: 18px;
    }

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

    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        gap: 20px;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .form-section {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero-content-narrow h1 {
        font-size: 28px;
    }

    .content-narrow p,
    .opening-text {
        font-size: 16px;
    }

    .service-card-inline {
        padding: 20px;
    }
}