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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f4c75;
    --highlight-color: #3282b8;
    --text-color: #2d2d2d;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #22c55e;
    --warning-color: #f59e0b;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-color);
    font-size: 18px;
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

h2 {
    font-size: 2.2rem;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.7rem;
    margin-top: 2.5rem;
}

h4 {
    font-size: 1.3rem;
    margin-top: 2rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--highlight-color);
}

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

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

li {
    margin-bottom: 0.5rem;
}

blockquote {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--accent-color);
    background-color: var(--bg-light);
    font-style: italic;
    font-size: 1.1rem;
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-style: normal;
    color: var(--text-light);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
}

.cookie-content a {
    color: var(--highlight-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--success-color);
    color: white;
}

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

.btn-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

/* Navigation */
.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.brand {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    padding: 0;
    margin: 0;
}

.nav-menu li a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--accent-color);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

/* Editorial Content - Main Article Style */
.editorial-content {
    max-width: 100%;
    background-color: var(--bg-white);
}

.article-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 900px;
}

.article-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-lead {
    font-size: 1.4rem;
    margin: 0;
    opacity: 0.95;
    font-family: Georgia, serif;
    font-style: italic;
}

/* Content Sections */
.content-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.intro-section,
.story-section,
.insight-section,
.problem-section,
.revelation-section,
.testimonial-section,
.pattern-section,
.urgency-section,
.services-preview {
    padding: 3rem 0;
}

.story-section.alt {
    background-color: var(--bg-light);
}

/* Drop Cap for First Paragraph */
.dropcap::first-letter {
    float: left;
    font-size: 4.5rem;
    line-height: 0.85;
    margin: 0.1rem 0.15rem 0 0;
    font-weight: 700;
    color: var(--accent-color);
}

/* Inline Images */
.inline-image {
    margin: 2.5rem 0;
    border-radius: 4px;
}

.full-width-image {
    width: 100%;
    margin: 2rem 0;
    border-radius: 4px;
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Inline CTA Boxes */
.inline-cta {
    background-color: var(--bg-light);
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid var(--accent-color);
    text-align: center;
}

.inline-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.inline-cta-box {
    background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
    color: white;
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 8px;
    text-align: center;
}

.inline-cta-box h4 {
    color: white;
    margin-top: 0;
    font-size: 1.8rem;
}

.inline-cta-box p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

/* Insight Lists */
.insight-list {
    list-style: none;
    padding: 0;
}

.insight-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.05rem;
}

.insight-list li:last-child {
    border-bottom: none;
}

/* Testimonials */
.testimonial-card {
    background-color: var(--bg-white);
    border-left: 4px solid var(--highlight-color);
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    font-style: normal;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Principle Boxes */
.principle-box {
    background-color: var(--bg-light);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 6px;
}

.principle-box h4 {
    margin-top: 0;
    color: var(--accent-color);
}

/* Statistics Highlight */
.stat-highlight {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--bg-light);
    margin: 3rem 0;
    border-radius: 8px;
}

.big-number {
    display: block;
    font-size: 5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-highlight p {
    font-size: 1.2rem;
    margin: 0;
}

/* Service Cards */
.service-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    padding: 2.5rem;
    margin: 2.5rem 0;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

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

.service-card.featured {
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-card .badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h3 {
    margin-top: 0;
    font-size: 1.6rem;
    color: var(--primary-color);
}

.service-description {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-card h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.service-card ul {
    margin-bottom: 2rem;
}

.service-card ul li {
    padding-left: 0.5rem;
}

.price-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    margin-top: 2rem;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-large,
.btn-select-service,
.btn-submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary,
.btn-select-service {
    background-color: var(--accent-color);
    color: white;
}

.btn-primary:hover,
.btn-select-service:hover {
    background-color: var(--highlight-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: white;
}

.btn-large {
    font-size: 1.2rem;
    padding: 1.3rem 3rem;
    background-color: var(--accent-color);
    color: white;
}

.btn-large:hover {
    background-color: var(--highlight-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.btn-submit {
    background-color: var(--success-color);
    color: white;
    width: 100%;
}

.btn-submit:hover {
    background-color: #16a34a;
}

/* Forms */
.form-section {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

.order-form {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.selected-service-display {
    background-color: var(--bg-light);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 6px;
    border-left: 4px solid var(--accent-color);
}

.selected-service-display p {
    margin: 0.5rem 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.final-cta h2 {
    color: white;
}

.final-cta p {
    font-size: 1.15rem;
    opacity: 0.95;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--warning-color);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #d97706;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

/* Footer */
.main-footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 2rem 1.5rem;
}

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

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

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: white;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Page Content Styles */
.page-content {
    min-height: 60vh;
}

.page-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 5rem 2rem 4rem;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-header .lead {
    font-size: 1.3rem;
    opacity: 0.95;
    font-style: italic;
    margin: 0;
}

/* About Page */
.about-story {
    background-color: var(--bg-white);
}

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

.value-box {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.value-box h4 {
    margin-top: 0;
    color: var(--accent-color);
}

.cta-box {
    background-color: var(--bg-light);
    padding: 3rem;
    margin: 4rem 0;
    text-align: center;
    border-radius: 8px;
}

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

/* Services Page */
.services-list {
    background-color: var(--bg-white);
    padding: 3rem 0;
}

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

.contact-info-box {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    margin-top: 0;
    font-size: 1.3rem;
    color: var(--accent-color);
}

.contact-item p {
    margin-bottom: 0.5rem;
}

.contact-item .small-text {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-cta {
    background-color: var(--bg-white);
    padding: 2rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 3rem;
}

.map-placeholder {
    margin-top: 3rem;
}

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

.text-center {
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 2rem;
    width: 120px;
}

.thanks-message {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

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

.step-box {
    background-color: var(--bg-light);
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-color);
}

.step-box h3 {
    margin-top: 0;
    font-size: 1.4rem;
}

.thanks-cta {
    background-color: var(--bg-light);
    padding: 3rem;
    margin: 3rem 0;
    border-radius: 8px;
}

.thanks-cta h3 {
    margin-top: 0;
}

.thanks-cta .btn-primary,
.thanks-cta .btn-secondary {
    margin: 0.5rem;
}

.contact-reminder {
    margin-top: 3rem;
    padding: 2rem;
    border-top: 2px solid var(--border-color);
}

/* Legal Pages */
.legal-page {
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 2.5rem;
}

.update-date {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

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

.cookies-table thead {
    background-color: var(--bg-light);
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    font-weight: 600;
}

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        display: none;
    }

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

    .nav-menu li {
        padding: 0.7rem 2rem;
    }

    .nav-menu li a::after {
        display: none;
    }

    .article-hero {
        height: 50vh;
        min-height: 400px;
    }

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

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

    .content-narrow,
    .content-wide {
        padding: 2rem 1.5rem;
    }

    .big-number {
        font-size: 3.5rem;
    }

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

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

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

    .value-box {
        min-width: 100%;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .price {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-large {
        padding: 0.9rem 1.8rem;
    }

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

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

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

    h2 {
        font-size: 1.5rem;
    }

    .article-hero h1 {
        font-size: 1.8rem;
    }

    .hero-lead {
        font-size: 1rem;
    }

    .nav-container {
        padding: 1rem 1rem;
    }

    .content-narrow,
    .content-wide {
        padding: 1.5rem 1rem;
    }

    .btn-large {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}