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

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

/* Navigation */
.nav-top {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    background-color: #f5f5f5;
    padding: 0.3rem 0.7rem;
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
    margin: 0.5rem 0;
}

.nav-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 1.5rem;
}

.nav-menu a {
    color: #444;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #1a73e8;
}

/* Editorial Main Content */
.editorial-main {
    background-color: #ffffff;
    padding: 2rem 0;
}

.story-article {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.article-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8e8e8;
}

.article-header h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

/* Story Images */
.story-image {
    margin: 3rem 0;
    width: 100%;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.inline-image {
    margin: 2.5rem 0;
    width: 100%;
}

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

/* Story Content */
.story-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-content h2 {
    font-size: 1.9rem;
    margin: 3rem 0 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.story-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
    color: #2a2a2a;
}

.story-content h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
    color: #333;
}

.story-content p {
    margin-bottom: 1.5rem;
}

.story-content ul,
.story-content ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

.story-content li {
    margin-bottom: 0.8rem;
}

.story-quote {
    margin: 3rem 0;
    padding: 2rem 2.5rem;
    background-color: #f9f9f9;
    border-left: 4px solid #1a73e8;
    font-size: 1.3rem;
    font-style: italic;
    color: #444;
    line-height: 1.6;
}

/* CTA Elements */
.cta-inline {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background-color: #f0f7ff;
    border-radius: 6px;
}

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

.cta-link {
    color: #1a73e8;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s;
}

.cta-link:hover {
    color: #0d5bb8;
}

.cta-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.cta-section h2,
.cta-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a73e8;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    background-color: #0d5bb8;
}

/* Testimonials */
.testimonial-block {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fff8e6;
    border-left: 4px solid #ffb74d;
    border-radius: 4px;
}

.testimonial-block p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #333;
}

.testimonial-block cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
}

/* Services Section */
.services-intro {
    margin: 2rem 0 3rem;
    padding: 1.5rem;
    background-color: #f5f5f5;
    border-radius: 6px;
}

.services-list {
    margin: 3rem 0;
}

.service-item {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-item p {
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a73e8;
    margin-top: 1rem;
    font-family: 'Arial', sans-serif;
}

.services-detailed {
    margin: 3rem 0;
}

.service-detail {
    margin: 4rem 0;
    padding-bottom: 3rem;
    border-bottom: 2px solid #e8e8e8;
}

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

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #1a73e8;
    margin: 1rem 0 1.5rem;
    font-family: 'Arial', sans-serif;
}

/* Forms */
.form-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.form-section h3 {
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-weight: 400;
    font-size: 0.95rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label a {
    color: #1a73e8;
    text-decoration: underline;
}

.btn-submit {
    padding: 1rem 3rem;
    background-color: #1a73e8;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

/* Contact Page */
.contact-info-section {
    margin: 3rem 0;
}

.contact-block {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-note {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-tips {
    margin: 1.5rem 0 1.5rem 2rem;
}

.contact-email-display {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a73e8;
    text-align: center;
    margin-top: 1.5rem;
}

.faq-section {
    margin: 3rem 0;
}

.faq-section h3 {
    margin-top: 2rem;
    font-size: 1.2rem;
    color: #1a1a1a;
}

.faq-section p {
    margin-bottom: 1.5rem;
}

/* Thanks Page */
.thanks-content {
    padding: 2rem 0;
}

.thanks-message {
    margin: 2rem 0;
}

.next-steps {
    margin: 2rem 0 2rem 2rem;
    list-style: decimal;
}

.next-steps li {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.thanks-links {
    margin: 2rem 0 2rem 2rem;
}

.thanks-links a {
    color: #1a73e8;
    text-decoration: underline;
}

.thanks-note {
    margin: 3rem 0;
    padding: 1.5rem;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.final-cta {
    margin: 3rem 0 2rem;
    text-align: center;
    font-size: 1.1rem;
}

.final-cta a {
    color: #1a73e8;
    text-decoration: underline;
    font-weight: 600;
}

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

.legal-intro {
    font-size: 1.15rem;
    padding: 1.5rem;
    background-color: #f0f7ff;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.legal-update {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    font-style: italic;
    color: #666;
}

.cookies-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    border: 1px solid #e0e0e0;
    text-align: left;
    font-size: 0.95rem;
}

.cookies-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0 1.5rem;
    margin-top: 5rem;
}

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

.footer-section {
    flex: 1 1 220px;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #cccccc;
}

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

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 2rem 1.5rem 0;
    border-top: 1px solid #333;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

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

.btn-accept:hover {
    background-color: #0d5bb8;
}

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

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

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

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

    .nav-menu {
        width: 100%;
        justify-content: flex-start;
        gap: 1rem;
    }

    .ad-disclosure {
        order: -1;
        margin-bottom: 0.5rem;
    }

    .article-header h1 {
        font-size: 2rem;
    }

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

    .story-content {
        font-size: 1rem;
    }

    .story-content h2 {
        font-size: 1.6rem;
    }

    .story-content h3 {
        font-size: 1.3rem;
    }

    .story-quote {
        padding: 1.5rem;
        font-size: 1.1rem;
    }

    .cta-section {
        padding: 2rem 1.5rem;
    }

    .service-price-large {
        font-size: 1.6rem;
    }

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

    .footer-section {
        flex: 1 1 100%;
    }

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

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

    .btn-accept,
    .btn-reject {
        flex: 1;
    }

    .cookies-table {
        font-size: 0.85rem;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 0.7rem;
    }
}

@media (max-width: 480px) {
    .article-header h1 {
        font-size: 1.7rem;
    }

    .story-content h2 {
        font-size: 1.4rem;
    }

    .btn-primary,
    .btn-submit {
        width: 100%;
        text-align: center;
    }
}