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

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

.ad-disclosure {
    background-color: #f4f4f4;
    padding: 8px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
    font-family: 'Arial', sans-serif;
}

.minimal-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.5px;
}

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

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

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

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

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

.hero-image-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #2c2c2c;
}

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

.hero-text-overlay {
    max-width: 720px;
    margin: -120px auto 0;
    padding: 40px 30px;
    background-color: #ffffff;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-text-overlay h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.subtitle {
    font-size: 19px;
    color: #666;
    font-style: italic;
}

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

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

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

.content-narrow h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 18px;
    color: #2c2c2c;
}

.inline-image-block {
    margin: 50px 0;
    background-color: #f9f9f9;
    padding: 20px;
}

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

.image-caption {
    margin-top: 15px;
    font-size: 15px;
    color: #666;
    text-align: center;
    font-style: italic;
}

.insight-block {
    background-color: #f5f5f5;
    border-left: 4px solid #1a1a1a;
    padding: 30px;
    margin: 40px 0;
}

.insight-block h3 {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 15px;
}

.insight-block p {
    margin-bottom: 0;
    font-size: 17px;
}

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

.link-cta {
    color: #1a1a1a;
    font-size: 19px;
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

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

.testimonial-story {
    margin: 40px 0;
    padding: 30px;
    background-color: #fafafa;
    border-left: 3px solid #ccc;
}

.testimonial-story blockquote {
    margin: 0;
}

.testimonial-story p {
    font-size: 19px;
    line-height: 1.6;
    font-style: italic;
    color: #333;
}

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

.core-list {
    margin: 30px 0;
    padding-left: 25px;
}

.core-list li {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.6;
}

.services-editorial {
    margin-top: 50px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 35px;
    margin-bottom: 30px;
}

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

.service-card > p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #4a4a4a;
}

.service-details {
    border-top: 1px solid #e8e8e8;
    padding-top: 20px;
    margin-top: 20px;
}

.service-includes {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

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

.select-service {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

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

.select-service.selected {
    background-color: #4a4a4a;
}

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

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

.editorial-form {
    max-width: 100%;
    margin-top: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #2c2c2c;
    font-weight: 600;
    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: 'Georgia', serif;
    background-color: #ffffff;
}

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

.submit-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    margin-top: 60px;
    padding: 30px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
}

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

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

.editorial-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 30px 30px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #ccc;
    font-family: 'Arial', sans-serif;
}

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

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

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

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

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

.footer-bottom p {
    font-size: 13px;
    color: #999;
    font-family: 'Arial', sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 25px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
}

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

.cookie-btn {
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: opacity 0.3s ease;
}

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

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

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

.thanks-page {
    max-width: 680px;
    margin: 80px auto;
    padding: 60px 30px;
    text-align: center;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
}

.thanks-page h1 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-page p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.thanks-page .selected-service-info {
    background-color: #ffffff;
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid #1a1a1a;
}

.thanks-page .selected-service-info strong {
    font-size: 20px;
}

.thanks-page a {
    display: inline-block;
    margin-top: 20px;
    color: #1a1a1a;
    text-decoration: underline;
    font-size: 17px;
    transition: opacity 0.3s ease;
}

.thanks-page a:hover {
    opacity: 0.7;
}

.contact-page {
    max-width: 680px;
    margin: 60px auto;
    padding: 40px 30px;
}

.contact-page h1 {
    font-size: 38px;
    margin-bottom: 30px;
}

.contact-info {
    margin-top: 40px;
}

.contact-info h2 {
    font-size: 26px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-page {
    max-width: 680px;
    margin: 60px auto;
    padding: 40px 30px;
}

.about-page h1 {
    font-size: 38px;
    margin-bottom: 30px;
}

.about-page p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.about-image {
    width: 100%;
    margin: 40px 0;
    background-color: #f0f0f0;
}

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

.legal-page {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px 30px;
}

.legal-page h1 {
    font-size: 34px;
    margin-bottom: 30px;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.legal-page ul {
    margin: 20px 0 20px 25px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

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

    .hero-text-overlay h1 {
        font-size: 32px;
    }

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

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

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