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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #004499;
}

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

ul {
    list-style-position: inside;
}

/* Navigation - Minimal Style */
.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-family: 'Arial', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #0066cc;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

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

.nav-menu li a {
    color: #2a2a2a;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-menu li a:hover {
    color: #0066cc;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: flex;
    justify-content: center;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-content a {
    color: #66aaff;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #0066cc;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Editorial Container */
.editorial-container {
    width: 100%;
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Hero Editorial */
.hero-editorial {
    padding: 4rem 0 3rem;
}

.hero-text-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 5%;
    margin-bottom: 2.5rem;
}

.hero-editorial h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-subtext {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
    font-weight: 400;
}

.hero-image-inline {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
}

/* Story Sections */
.story-section {
    padding: 3rem 0;
}

.story-section h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.story-section h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #1a1a1a;
    font-weight: 600;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #2a2a2a;
}

.story-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.story-image {
    margin: 2.5rem 0;
    border-radius: 8px;
}

.quote-block {
    font-size: 1.6rem;
    line-height: 1.5;
    font-style: italic;
    color: #0066cc;
    margin: 2.5rem 0;
    padding-left: 2rem;
    border-left: 4px solid #0066cc;
}

.insight-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.insight-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    color: #3a3a3a;
}

/* Problem Amplification Section */
.problem-amplify {
    background-color: #f9f9f9;
    padding: 3rem 0;
    margin: 3rem 0;
}

/* Insight Section */
.insight-section {
    padding: 3rem 0;
    background-color: #fafafa;
    margin: 3rem 0;
}

.insight-card {
    background-color: #ffffff;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #0066cc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.insight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.insight-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3a3a3a;
}

/* CTA Boxes */
.cta-inline-box {
    background-color: #0066cc;
    color: #ffffff;
    padding: 2.5rem;
    text-align: center;
    margin: 3rem auto;
    max-width: 680px;
    border-radius: 8px;
}

.cta-inline-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.btn-cta-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #0066cc;
    padding: 1rem 2.5rem;
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-section-block {
    text-align: center;
    padding: 4rem 0;
    max-width: 680px;
    margin: 0 auto;
}

.cta-section-block h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-section-block p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.btn-cta-large {
    display: inline-block;
    background-color: #0066cc;
    color: #ffffff;
    padding: 1.2rem 3rem;
    font-family: 'Arial', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #004499;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.3);
}

.btn-cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #0066cc;
    padding: 1rem 2.5rem;
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #0066cc;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background-color: #0066cc;
    color: #ffffff;
}

/* Trust Section */
.trust-section {
    padding: 3rem 0;
}

.testimonial-inline {
    background-color: #f5f8fc;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 3px solid #0066cc;
    border-radius: 4px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #666666;
    font-style: normal;
    font-family: 'Arial', sans-serif;
}

/* Benefits Reveal / Services Section */
.benefits-reveal {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.service-card-editorial {
    background-color: #ffffff;
    margin: 2.5rem 0;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
}

.service-card-editorial.featured {
    border: 2px solid #0066cc;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.15);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 2.5rem;
    background-color: #ff6600;
    color: #ffffff;
    padding: 0.4rem 1rem;
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
}

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

.service-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

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

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #3a3a3a;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1.5rem;
    font-family: 'Arial', sans-serif;
}

.btn-select-service {
    display: inline-block;
    background-color: #0066cc;
    color: #ffffff;
    padding: 1rem 2rem;
    font-family: 'Arial', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-select-service.featured {
    background-color: #ff6600;
}

.btn-select-service.featured:hover {
    background-color: #cc5200;
}

/* Urgency Section */
.urgency-section {
    padding: 3rem 0;
    background-color: #fff8f0;
}

/* Form Section */
.form-section {
    padding: 4rem 0;
    background-color: #fafafa;
}

.contact-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

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

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

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

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

.btn-submit {
    width: 100%;
    background-color: #0066cc;
    color: #ffffff;
    padding: 1.2rem;
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #004499;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.3);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    padding: 1.2rem 5%;
    z-index: 999;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-cta-text {
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-sticky {
    display: inline-block;
    background-color: #0066cc;
    color: #ffffff;
    padding: 0.9rem 2rem;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #004499;
}

/* Footer */
.footer-editorial {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 3rem 5% 1.5rem;
}

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

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

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

.footer-section p {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cccccc;
}

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

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

.footer-section ul li a {
    color: #cccccc;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    color: #999999;
}

/* Services Page Specific */
.page-header-editorial {
    padding: 3rem 0;
    background-color: #f9f9f9;
}

.page-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-top: 1rem;
}

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

.service-detailed-card {
    background-color: #ffffff;
    margin: 2.5rem 0;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
}

.featured-service {
    border: 2px solid #0066cc;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.15);
}

.premium-service {
    border: 2px solid #ff6600;
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.15);
}

.featured-badge,
.premium-badge {
    position: absolute;
    top: -12px;
    left: 3rem;
    background-color: #ff6600;
    color: #ffffff;
    padding: 0.4rem 1rem;
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
}

.premium-badge {
    background-color: #cc5200;
}

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

.service-detailed-header h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin: 0;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066cc;
    font-family: 'Arial', sans-serif;
}

.service-detailed-body {
    max-width: 680px;
}

.service-description {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #3a3a3a;
}

.detailed-features {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0 2rem;
}

.detailed-features li {
    padding-left: 1.8rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.detailed-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
    font-size: 1.2rem;
}

.services-compare {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.comparison-table {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-row:last-child {
    border-bottom: none;
}

.header-row {
    background-color: #0066cc;
    color: #ffffff;
    font-weight: 600;
}

.comparison-cell {
    flex: 1;
    padding: 1rem;
    text-align: center;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    border-right: 1px solid #e0e0e0;
}

.comparison-cell:first-child {
    text-align: left;
    flex: 1.5;
}

.comparison-cell:last-child {
    border-right: none;
}

.cta-section-page {
    padding: 4rem 0;
    background-color: #f0f7ff;
    text-align: center;
}

/* About Page Specific */
.philosophy-card {
    background-color: #ffffff;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #0066cc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.philosophy-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.philosophy-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 2rem 1rem;
    background-color: #f5f8fc;
    border-radius: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066cc;
    font-family: 'Arial', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #666666;
    font-family: 'Arial', sans-serif;
}

.testimonial-detailed {
    background-color: #ffffff;
    padding: 2.5rem;
    margin: 2rem 0;
    border-left: 4px solid #0066cc;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-detailed .testimonial-text {
    font-size: 1.15rem;
}

/* Contact Page Specific */
.contact-section {
    padding: 3rem 0;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin: 2rem 0;
}

.contact-info-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.contact-info-card h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 0.7rem;
}

.contact-detail p {
    font-size: 1rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.detail-note {
    font-size: 0.9rem;
    color: #666666;
    margin-top: 0.5rem;
}

.contact-map-placeholder {
    flex: 1;
    min-width: 280px;
}

.location-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.map-note {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666666;
}

.contact-methods {
    margin: 4rem 0;
}

.contact-methods h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.method-card {
    background-color: #ffffff;
    padding: 2rem;
    margin: 1.5rem 0;
    border-left: 4px solid #0066cc;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.method-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.method-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.contact-faq {
    margin: 4rem 0;
}

.contact-faq h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.faq-item {
    margin: 2rem 0;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #0066cc;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.contact-cta-box {
    background-color: #f0f7ff;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

.contact-cta-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.cta-buttons-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Thanks Page Specific */
.thanks-section {
    padding: 4rem 0;
}

.thanks-hero {
    text-align: center;
    padding: 2rem 0 3rem;
}

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

.thanks-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #4a4a4a;
}

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

.thanks-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #0066cc;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #1a1a1a;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.thanks-service-summary {
    background-color: #f0f7ff;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #0066cc;
}

.thanks-service-summary h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: #0066cc;
}

.service-name-display {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.service-note {
    font-size: 0.95rem;
    color: #666666;
}

.thanks-next-steps {
    margin: 4rem 0;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.prep-card {
    background-color: #ffffff;
    padding: 2rem;
    margin: 1.5rem 0;
    border-left: 4px solid #00cc66;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.prep-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.prep-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.thanks-resources {
    margin: 4rem 0;
}

.thanks-resources h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.resources-list {
    list-style: none;
    padding-left: 0;
}

.resources-list li {
    padding-left: 1.8rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.resources-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

.thanks-contact {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

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

.thanks-contact p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.thanks-social-proof {
    background-color: #ffffff;
    padding: 2.5rem;
    margin: 3rem 0;
    border-left: 4px solid #0066cc;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.thanks-final-message {
    text-align: center;
    padding: 3rem 0;
}

.thanks-final-message h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-final-message p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

/* Legal Pages */
.legal-page {
    background-color: #ffffff;
}

.legal-content {
    padding: 3rem 0;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #0066cc;
    font-weight: 600;
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    color: #2a2a2a;
    font-weight: 600;
}

.legal-content h5 {
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #0066cc;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.8;
}

.legal-content ul li {
    margin-bottom: 0.6rem;
    color: #3a3a3a;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f5f8fc;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    color: #3a3a3a;
}

.browser-instructions {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.browser-instructions h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #0066cc;
}

.browser-instructions p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    color: #3a3a3a;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        border-bottom: 1px solid #e0e0e0;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.8rem 5%;
    }

    .hero-editorial h1 {
        font-size: 2rem;
    }

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

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

    .quote-block {
        font-size: 1.3rem;
        padding-left: 1.5rem;
    }

    .story-section h2 {
        font-size: 1.7rem;
    }

    .sticky-cta-content {
        flex-direction: column;
        gap: 1rem;
    }

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

    .stats-grid {
        flex-direction: column;
    }

    .contact-grid {
        flex-direction: column;
    }

    .comparison-row {
        flex-direction: column;
    }

    .comparison-cell {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        text-align: left;
    }

    .comparison-cell:first-child {
        background-color: #f5f8fc;
        font-weight: 600;
    }

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

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

    .cta-buttons-group {
        flex-direction: column;
    }

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

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

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

    .price-amount {
        font-size: 2rem;
    }

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

    .stat-number {
        font-size: 2rem;
    }
}