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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: #2c3e50;
    background-color: #fefefe;
    font-size: 18px;
}

h1, h2, h3, h4 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    color: #1a1a1a;
}

h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-top: 2.5rem;
}

h3 {
    font-size: 1.4rem;
    color: #34495e;
    margin-top: 1.8rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

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

ul {
    margin-left: 1.5rem;
    margin-bottom: 1.2rem;
}

li {
    margin-bottom: 0.6rem;
}

/* Ad Notice */
.ad-notice {
    background-color: #f8f9fa;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

/* Navigation */
.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    color: #34495e;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Editorial Main Container */
.editorial-main {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Hero Article */
.hero-article {
    margin-bottom: 4rem;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-intro {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-image {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.hero-image img {
    width: 100%;
    border-radius: 4px;
}

/* Content Sections */
.content-section {
    margin-bottom: 3rem;
}

.content-section.narrow {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #2c3e50;
    font-weight: 400;
}

/* With Image Section */
.content-section.with-image {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.content-section.with-image.reverse {
    flex-direction: column-reverse;
}

.text-block {
    flex: 1;
}

.inline-image {
    margin: 2rem 0;
}

.inline-image img {
    width: 100%;
    border-radius: 4px;
}

/* Highlight Box */
.highlight-box {
    background-color: #f8f9fa;
    padding: 2.5rem;
    margin: 3rem 0;
    border-left: 4px solid #3498db;
}

.highlight-content h3 {
    margin-top: 0;
    color: #2c3e50;
}

.editorial-list {
    list-style: none;
    margin-left: 0;
}

.editorial-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
}

.editorial-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 1.5rem;
}

/* CTA Inline */
.cta-inline {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.cta-inline p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.cta-link {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #2980b9;
    color: #ffffff;
}

/* Testimonial */
.testimonial-section {
    margin: 4rem 0;
}

.testimonial {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-left: 4px solid #95a5a6;
    font-style: italic;
}

.testimonial p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial cite {
    display: block;
    text-align: right;
    font-style: normal;
    color: #7f8c8d;
    margin-top: 1rem;
}

/* Services Grid */
.services-overview {
    margin: 4rem 0;
}

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #555;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e1e8ed;
    padding: 2rem;
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
}

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

.service-card.featured {
    border: 2px solid #3498db;
    background-color: #f0f8ff;
}

.service-card h3 {
    margin-top: 0;
    color: #2c3e50;
    font-size: 1.5rem;
}

.service-card p {
    color: #555;
    line-height: 1.6;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin-top: 1rem;
    font-family: 'Helvetica Neue', sans-serif;
}

/* Services Detailed */
.services-detailed {
    margin: 3rem 0;
}

.service-detail {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e1e8ed;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h2 {
    margin: 0;
    flex: 1;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    font-family: 'Helvetica Neue', sans-serif;
}

.service-body {
    color: #555;
}

.service-duration {
    margin-top: 1.5rem;
    font-style: italic;
    color: #7f8c8d;
}

.featured-service {
    background-color: #f0f8ff;
    padding: 2rem;
    border-radius: 4px;
    border: 2px solid #3498db;
}

/* Forms */
.editorial-form {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.editorial-form h3 {
    margin-top: 0;
    color: #2c3e50;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #34495e;
    font-family: 'Helvetica Neue', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Helvetica Neue', sans-serif;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    background-color: #3498db;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Helvetica Neue', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Disclaimer */
.disclaimer-box {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    padding: 1.5rem;
    margin: 3rem 0;
    border-radius: 4px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.disclaimer-box p {
    margin-bottom: 0;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e1e8ed;
}

.header-lead {
    font-size: 1.3rem;
    color: #7f8c8d;
    margin-top: 1rem;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-block {
    flex: 1;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    margin-top: 0;
    color: #2c3e50;
    font-size: 1.2rem;
}

.email-display {
    color: #555;
    font-family: 'Courier New', monospace;
}

.contact-image {
    margin: 2rem 0;
}

.contact-image img {
    width: 100%;
    border-radius: 4px;
}

/* FAQ */
.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e1e8ed;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    margin-top: 0;
    color: #2c3e50;
}

/* Thanks Page */
.thanks-container {
    text-align: center;
    padding: 3rem 0;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.thanks-image {
    margin: 3rem 0;
}

.thanks-image img {
    max-width: 500px;
    margin: 0 auto;
    border-radius: 4px;
}

.selected-service {
    background-color: #f0f8ff;
    padding: 1.5rem;
    border-radius: 4px;
    border: 1px solid #3498db;
    font-size: 1.1rem;
    margin: 2rem 0;
}

.next-steps {
    text-align: left;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 4px;
    margin: 3rem 0;
}

.next-steps h2 {
    margin-top: 0;
}

.next-steps ol {
    margin-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
}

/* Footer */
.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
}

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

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    color: #bdc3c7;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding: 2rem 2rem 1rem;
    margin-top: 2rem;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
    margin: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Helvetica Neue', sans-serif;
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .editorial-main {
        padding: 2rem 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

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

    .lead-text {
        font-size: 1.1rem;
    }

    .highlight-box,
    .testimonial,
    .editorial-form {
        padding: 1.5rem;
    }

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

    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}