/* 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.7;
    color: #2c2c2c;
    background: #ffffff;
}

/* Navigation */
.nav-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-family: 'Arial', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

.nav-links a:hover {
    color: #d32f2f;
}

/* Editorial Container */
.editorial-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 120px 2rem 4rem;
}

/* Hero Editorial */
.hero-editorial {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

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

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

/* Content Sections */
.content-section {
    margin-bottom: 3rem;
}

.content-section.bg-light {
    background: #f9f9f9;
    margin-left: -100vw;
    margin-right: -100vw;
    padding: 4rem 100vw;
}

.content-section.bg-accent {
    background: #fef8f4;
    margin-left: -100vw;
    margin-right: -100vw;
    padding: 4rem 100vw;
}

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

/* Typography */
h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin: 2.5rem 0 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
    color: #2c2c2c;
}

p {
    margin-bottom: 1.5rem;
}

.drop-cap::first-letter {
    float: left;
    font-size: 4rem;
    line-height: 0.9;
    margin: 0.1rem 0.15rem 0 0;
    font-weight: 700;
    color: #d32f2f;
}

/* Inline Images */
.inline-image {
    margin: 3rem 0;
}

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

.inline-image figcaption {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    margin-top: 0.8rem;
    text-align: center;
}

/* Blockquote */
blockquote {
    margin: 3rem 0;
    padding: 2rem;
    background: #f5f5f5;
    border-left: 4px solid #d32f2f;
    font-size: 1.2rem;
    font-style: italic;
    color: #333;
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-style: normal;
    color: #666;
}

/* CTA Inline */
.cta-inline {
    margin: 2.5rem 0;
    text-align: center;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #d32f2f;
    color: #ffffff;
}

.btn-primary:hover {
    background: #b71c1c;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #ffffff;
    color: #d32f2f;
    border: 2px solid #d32f2f;
}

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

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

/* Feature Grid */
.feature-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.feature-item {
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 4px;
    border-left: 3px solid #d32f2f;
}

.feature-item h3 {
    margin-top: 0;
}

/* Testimonials */
.testimonial-block {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 4px;
}

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

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

/* Service Cards */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    position: relative;
}

.service-card.featured {
    border: 2px solid #d32f2f;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.1);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #d32f2f;
    color: #ffffff;
    padding: 0.3rem 1rem;
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
}

.service-card h3 {
    margin-top: 0;
    color: #d32f2f;
}

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

.service-card ul li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

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

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d32f2f;
    margin: 1.5rem 0;
    font-family: 'Arial', sans-serif;
}

.btn-select {
    width: 100%;
    padding: 1rem;
    background: #ffffff;
    color: #d32f2f;
    border: 2px solid #d32f2f;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-select.selected {
    background: #d32f2f;
    color: #ffffff;
}

/* Form */
.registration-form {
    margin: 2rem 0;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
}

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

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

.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 #ddd;
    border-radius: 4px;
    background: #ffffff;
}

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

/* Footer */
.footer {
    background: #2c2c2c;
    color: #ffffff;
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

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

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

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

.footer-column p {
    font-size: 0.9rem;
    color: #ccc;
}

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

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

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #999;
}

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

.btn-sticky {
    display: inline-block;
    padding: 1rem 2rem;
    background: #d32f2f;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.btn-sticky:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 44, 44, 0.98);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

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

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

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

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

.btn-accept:hover {
    background: #b71c1c;
}

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

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

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

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

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .editorial-container {
        padding: 100px 1.5rem 3rem;
    }

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

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

    h2 {
        font-size: 1.6rem;
    }

    .drop-cap::first-letter {
        font-size: 3rem;
    }

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

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

    .btn-sticky {
        display: block;
        text-align: center;
        width: 100%;
    }

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

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

    .nav-links {
        gap: 0.8rem;
    }

    .nav-links a {
        font-size: 0.8rem;
    }
}
