/* 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: #2c3e50;
    background: #fafafa;
}

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

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.9rem;
    margin-top: 2.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

p {
    margin-bottom: 1.3rem;
}

a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a5f8a;
}

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

/* Ad Disclosure */
.ad-disclosure {
    background: #f8d7da;
    color: #721c24;
    padding: 0.6rem 1rem;
    text-align: center;
    font-size: 0.85rem;
    font-family: Arial, sans-serif;
    border-bottom: 1px solid #f5c6cb;
}

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

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

.logo {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-menu a {
    color: #555;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2980b9;
}

/* Editorial Content - Article-like structure */
.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    background: #fff;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.article-section {
    margin-bottom: 3rem;
}

.article-image {
    margin: 3rem 0;
    overflow: hidden;
    border-radius: 4px;
}

.article-image img {
    width: 100%;
}

.article-image-small {
    margin: 2.5rem auto;
    max-width: 600px;
    overflow: hidden;
    border-radius: 4px;
}

.article-image-small img {
    width: 100%;
}

/* Highlight Box */
.highlight-box {
    background: #f9f9f9;
    border-left: 4px solid #2980b9;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
}

.highlight-box h3 {
    margin-top: 0;
    color: #2980b9;
}

/* Inline CTAs */
.inline-cta {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem 1.5rem;
    background: #ecf7ff;
    border-radius: 8px;
}

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

.cta-link {
    color: #2980b9;
    font-weight: 600;
    font-size: 1.05rem;
    border-bottom: 2px solid #2980b9;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #1a5f8a;
    border-bottom-color: #1a5f8a;
}

.inline-cta-box {
    background: #2980b9;
    color: #fff;
    padding: 2.5rem 2rem;
    margin: 3rem 0;
    border-radius: 8px;
    text-align: center;
}

.inline-cta-box h3 {
    color: #fff;
    margin-top: 0;
}

.inline-cta-box p {
    color: #e0f2ff;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #2980b9;
    padding: 0.9rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    font-family: Arial, sans-serif;
    margin-top: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.cta-button-large {
    display: inline-block;
    background: #27ae60;
    color: #fff;
    padding: 1.2rem 3rem;
    border-radius: 5px;
    font-weight: 600;
    font-family: Arial, sans-serif;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button-large:hover {
    background: #229954;
    transform: translateY(-2px);
}

.cta-button-secondary {
    display: inline-block;
    background: transparent;
    color: #2980b9;
    border: 2px solid #2980b9;
    padding: 0.9rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    font-family: Arial, sans-serif;
    margin-top: 1rem;
    margin-left: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button-secondary:hover {
    background: #2980b9;
    color: #fff;
}

/* Testimonials */
.testimonial-inline {
    background: #f4f4f4;
    padding: 2rem;
    border-left: 4px solid #e0e0e0;
    margin: 2.5rem 0;
}

.testimonial-inline blockquote {
    font-style: italic;
    font-size: 1.15rem;
}

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

/* Services Cards */
.services-cards {
    max-width: 900px;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

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

.service-card.featured {
    border: 2px solid #2980b9;
    background: #f8fbff;
}

.service-card.premium {
    border: 2px solid #27ae60;
    background: #f8fff9;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #2980b9;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-family: Arial, sans-serif;
}

.service-card h3,
.service-card h4 {
    margin-top: 0;
    color: #2c3e50;
    font-family: Arial, sans-serif;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.service-features span {
    background: #ecf7ff;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-family: Arial, sans-serif;
    color: #2980b9;
}

.service-features-list {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

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

.select-service {
    width: 100%;
    background: #2980b9;
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #1a5f8a;
}

.select-service:active {
    transform: scale(0.98);
}

/* Lists */
.simple-list,
.values-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.simple-list li,
.values-list li {
    margin-bottom: 0.8rem;
}

/* Forms */
.contact-form-wrapper {
    max-width: 600px;
    margin: 2.5rem auto;
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2980b9;
}

.form-group input[readonly] {
    background: #f0f0f0;
    cursor: not-allowed;
}

.submit-button {
    background: #27ae60;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #229954;
}

.submit-button:active {
    transform: scale(0.98);
}

/* Disclaimer and References */
.disclaimer-section {
    background: #fff9e6;
    border: 1px solid #f0e5c4;
    padding: 1.5rem;
    margin: 3rem 0;
    border-radius: 4px;
    font-size: 0.9rem;
}

.disclaimer-section h4 {
    margin-top: 0;
    color: #8b6914;
}

.disclaimer-section p {
    margin-bottom: 0;
    color: #5a4a0f;
}

.references-section {
    background: #f4f4f4;
    padding: 1.5rem 2rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.references-section h4 {
    margin-top: 0;
}

.references-section ol {
    padding-left: 1.5rem;
}

.references-section li {
    margin-bottom: 0.8rem;
}

/* Final CTA */
.final-cta {
    text-align: center;
    background: #f0f0f0;
    padding: 3rem 2rem;
    margin: 3rem 0;
    border-radius: 8px;
}

.final-cta h3 {
    color: #2c3e50;
}

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

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

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

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

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

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

.footer-section a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

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

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
    font-family: Arial, sans-serif;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

/* Page Content (for non-homepage pages) */
.page-content {
    min-height: 60vh;
}

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

.contact-info-item {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid #2980b9;
}

.contact-info-item h3 {
    margin-top: 0;
    color: #2980b9;
    font-family: Arial, sans-serif;
}

.email-display {
    font-family: 'Courier New', monospace;
    background: #f0f0f0;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
}

.info-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

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

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

.faq-item h4 {
    margin-top: 0;
    color: #2980b9;
}

/* Thanks Page */
.thanks-page {
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.next-steps {
    text-align: left;
    margin: 2.5rem 0;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #2980b9;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: Arial, sans-serif;
    flex-shrink: 0;
}

.step-content h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.step-content p {
    margin-bottom: 0;
}

.important-note {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 1rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.thanks-cta {
    margin-top: 3rem;
}

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

.cookies-table {
    margin: 2rem 0;
}

.cookies-table h4 {
    background: #f4f4f4;
    padding: 0.8rem 1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    border-radius: 4px;
}

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .editorial-content {
        padding: 2rem 1rem;
    }

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

    .nav-menu {
        margin-top: 1rem;
        gap: 1rem;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

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

    .cta-button-secondary {
        margin-left: 0;
        display: block;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}