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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.8;
    color: #2c2c2c;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
    color: #d63447;
}

/* Editorial Container - Narrow Centered Layout */
.editorial-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

/* Navigation - Minimal Style */
.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 32px;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-family: 'Arial', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1a1a2e;
}

.nav-brand a {
    color: #1a1a2e;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #1a1a2e;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: #e94560;
}

/* Hero Editorial Style */
.hero-editorial {
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 24px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-editorial h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 1;
}

/* Drop Cap */
.drop-cap::first-letter {
    font-size: 72px;
    line-height: 0.8;
    float: left;
    padding-right: 12px;
    color: #e94560;
    font-weight: 700;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a2e;
}

h2 {
    font-size: 36px;
    margin-top: 60px;
}

h3 {
    font-size: 28px;
    margin-top: 40px;
}

h4 {
    font-size: 22px;
    margin-top: 32px;
}

p {
    margin-bottom: 24px;
}

ul, ol {
    margin-bottom: 24px;
    padding-left: 32px;
}

li {
    margin-bottom: 12px;
}

/* Inline CTA Styles */
.inline-cta {
    text-align: center;
    padding: 40px 0;
}

.link-arrow {
    font-size: 20px;
    font-weight: 600;
    color: #e94560;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(8px);
}

.inline-cta-variant {
    background-color: #f8f8f8;
    padding: 40px;
    border-left: 4px solid #e94560;
    margin: 48px 0;
}

.btn-inline {
    display: inline-block;
    background-color: #e94560;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-top: 16px;
    transition: background-color 0.3s ease;
}

.btn-inline:hover {
    background-color: #d63447;
    color: #ffffff;
}

/* Inline Images and Figures */
.inline-image {
    margin: 48px 0;
}

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

/* Blockquotes and Testimonials */
blockquote, .testimonial-inline {
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    margin: 48px 0;
    padding: 32px;
    background-color: #f9f9f9;
    border-left: 4px solid #e94560;
    color: #333;
}

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

/* Highlight Boxes */
.highlight-box {
    background-color: #fef5f6;
    padding: 32px;
    margin: 48px 0;
    border-radius: 8px;
}

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

.info-box {
    background-color: #f0f7ff;
    padding: 24px;
    margin: 32px 0;
    border-radius: 4px;
    border-left: 4px solid #4a90e2;
}

/* Trust Builder Section */
.trust-builder {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 80px 24px;
    margin: 60px 0;
}

.trust-builder h2 {
    color: #ffffff;
    text-align: center;
}

.trust-builder p {
    text-align: center;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #e94560;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Services Editorial Style */
.services-editorial {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px;
}

.section-intro {
    font-size: 20px;
    color: #555;
    margin-bottom: 48px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 32px;
    position: relative;
    transition: box-shadow 0.3s ease;
}

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

.service-card.featured {
    border: 2px solid #e94560;
}

.badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background-color: #e94560;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 16px;
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #e94560;
    font-family: 'Arial', sans-serif;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.service-features li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 15px;
}

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

.service-ideal {
    font-size: 15px;
    font-style: italic;
    color: #666;
    margin: 20px 0;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.btn-select {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 16px;
}

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

/* Urgency Section */
.urgency-section {
    background-color: #fef5f6;
    padding: 60px 24px;
    margin: 60px 0;
    text-align: center;
}

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

.urgency-section p strong {
    font-size: 22px;
    color: #e94560;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 24px;
    background-color: #f9f9f9;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 15px;
    color: #666;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #e94560 0%, #d63447 100%);
    color: #ffffff;
    padding: 80px 24px;
    text-align: center;
}

.final-cta h2 {
    color: #ffffff;
    margin-top: 0;
}

/* Form Section */
.form-section {
    background-color: #f9f9f9;
    padding: 80px 24px;
}

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

.form-section > .content-narrow > p {
    text-align: center;
    margin-bottom: 48px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    font-weight: normal;
    font-size: 14px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
    margin-top: 4px;
    flex-shrink: 0;
}

.btn-primary {
    background-color: #e94560;
    color: #ffffff;
    padding: 16px 48px;
    border: none;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    width: 100%;
}

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

.btn-secondary {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 16px 48px;
    border: none;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background-color: #2c2c3e;
    color: #ffffff;
}

/* Footer */
.site-footer {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 60px 24px 24px;
    margin-top: auto;
}

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

.footer-brand h3 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 15px;
    opacity: 0.8;
}

.footer-links h4 {
    color: #ffffff;
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 16px;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e94560;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
    margin: 0;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 16px 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 99;
    display: none;
}

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

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

.sticky-content span {
    font-size: 16px;
    font-weight: 600;
}

.btn-sticky {
    background-color: #e94560;
    color: #ffffff;
    padding: 12px 32px;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 46, 0.98);
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 15px;
    flex: 1;
    min-width: 250px;
}

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

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

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

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

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

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

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

/* Page-specific Styles */
.page-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 24px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.header-lead {
    font-size: 20px;
    color: #666;
}

/* About Page */
.page-about .reason-list {
    margin: 48px 0;
}

.reason-item {
    margin-bottom: 40px;
}

.reason-item h3 {
    margin-top: 0;
    color: #e94560;
}

.cta-box {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    text-align: center;
    margin: 60px 0;
}

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

.cta-box p {
    margin-bottom: 32px;
}

/* Services Page */
.services-info {
    margin-top: 80px;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    margin-top: 0;
    color: #e94560;
}

/* Contact Page */
.contact-layout {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form-wrapper {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    margin-top: 0;
    color: #e94560;
    font-size: 20px;
}

.contact-item p {
    margin-bottom: 8px;
}

.contact-item .note {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.faq-section {
    margin-top: 80px;
}

.faq-item {
    margin-bottom: 32px;
}

.faq-item h3 {
    color: #e94560;
    margin-bottom: 12px;
}

/* Thanks Page */
.page-thanks {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.thanks-content {
    max-width: 680px;
    margin: 80px auto;
    padding: 40px 24px;
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
}

.thanks-message {
    text-align: left;
}

.thanks-message .lead {
    font-size: 22px;
    text-align: center;
    margin-bottom: 40px;
}

.service-selected {
    background-color: #fef5f6;
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
    border-left: 4px solid #e94560;
}

.next-steps {
    margin: 40px 0;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    padding: 16px;
    margin-bottom: 12px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    margin-top: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.thanks-actions .btn-primary,
.thanks-actions .btn-secondary {
    flex: 1;
    min-width: 200px;
}

.testimonial-box {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #e0e0e0;
}

/* Legal Pages */
.legal-page .legal-content {
    line-height: 1.7;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 48px;
    color: #1a1a2e;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 32px;
    color: #333;
}

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

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 24px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        gap: 16px;
    }

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

    .hero-editorial h1 {
        font-size: 36px;
    }

    .hero-lead {
        font-size: 18px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 24px;
    }

    .drop-cap::first-letter {
        font-size: 56px;
    }

    .service-header {
        flex-direction: column;
    }

    .service-price {
        font-size: 28px;
    }

    .stats-row {
        flex-direction: column;
        gap: 32px;
    }

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

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

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

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

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

    .hero-editorial {
        padding: 60px 20px;
    }

    .hero-editorial h1 {
        font-size: 30px;
    }

    .service-card {
        padding: 24px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 32px;
        font-size: 16px;
    }
}
