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

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

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

a:hover {
    color: #1a5c8a;
}

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

.cookie-banner.active {
    display: flex;
}

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

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

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

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: #27ae60;
    color: white;
}

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

.btn-cookie.btn-secondary {
    background-color: transparent;
    border: 2px solid #ecf0f1;
    color: #ecf0f1;
}

.btn-cookie.btn-secondary:hover {
    background-color: #ecf0f1;
    color: #34495e;
}

/* Navigation */
.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav-links a {
    color: #34495e;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    font-weight: 500;
}

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

/* Editorial Container - Main Layout */
.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* Hero Section */
.hero-editorial {
    margin-bottom: 4rem;
    text-align: center;
}

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

.hero-subtext {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

/* Page Header */
.page-header {
    margin-bottom: 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.header-subtext {
    font-size: 1.1rem;
    color: #7f8c8d;
}

/* Story Sections */
.story-section {
    margin-bottom: 3.5rem;
}

.story-section.alternate {
    background-color: #f8f9fa;
    padding: 2.5rem 1.5rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    border-radius: 4px;
}

.story-text {
    margin-bottom: 2rem;
}

.story-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #1a252f;
}

.story-text h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.story-text h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    color: #34495e;
}

.story-text p {
    margin-bottom: 1.5rem;
    text-align: left;
}

.story-text ul,
.story-text ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

.story-text li {
    margin-bottom: 0.8rem;
}

.inline-image {
    margin: 2rem 0;
    border-radius: 4px;
}

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

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

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

/* CTA Blocks */
.cta-block {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 2rem;
    margin: 4rem -1.5rem;
    text-align: center;
    border-radius: 4px;
}

.cta-block.alternate {
    background-color: #27ae60;
}

.cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ecf0f1;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2980b9;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
}

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

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

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

/* Services Section */
.services-editorial {
    margin: 3rem 0;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-card h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    color: #34495e;
}

.service-card p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-image {
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.service-list {
    margin: 1rem 0 1.5rem 1.5rem;
    list-style: disc;
}

.service-list li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.service-detail {
    font-style: italic;
    color: #5a6c7d;
    font-size: 0.9rem;
}

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

.btn-select,
.btn-select-link {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #2980b9;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-family: 'Arial', sans-serif;
}

.btn-select:hover,
.btn-select-link:hover {
    background-color: #1a5c8a;
    color: #ffffff;
}

/* Form Section */
.form-section {
    background-color: #f8f9fa;
    padding: 3rem 2rem;
    margin: 4rem -1.5rem;
    border-radius: 4px;
}

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

.form-container h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #2c3e50;
}

.form-container > p {
    text-align: center;
    margin-bottom: 2rem;
    color: #5a6c7d;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Georgia', 'Times New Roman', 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-color: #ecf0f1;
    cursor: not-allowed;
}

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    margin-top: 1rem;
}

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

/* Contact Section */
.contact-section {
    margin: 3rem 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.contact-block h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-block p {
    line-height: 1.8;
    color: #34495e;
}

.contact-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 0.5rem;
}

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

.thanks-content h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #5a6c7d;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    text-align: left;
}

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

.thanks-list {
    margin: 1rem 0 1rem 1.5rem;
}

.thanks-list li {
    margin-bottom: 0.8rem;
}

.thanks-note {
    background-color: #fff3cd;
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid #f39c12;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-note strong {
    color: #2c3e50;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: #34495e;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-section li {
    margin-bottom: 0.6rem;
}

/* Footer */
.footer-editorial {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2.5rem 0;
    margin-top: 5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #ecf0f1;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
}

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

.footer-copy {
    font-size: 0.85rem;
    color: #95a5a6;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
}

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #e74c3c;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.sticky-btn:hover {
    background-color: #c0392b;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-editorial h1 {
        font-size: 2rem;
    }

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

    .story-text h2 {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .cta-block {
        padding: 2rem 1.5rem;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }

    .price {
        font-size: 1.7rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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

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

    .footer-links {
        gap: 1rem;
    }
}

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

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

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

    .page-header h1 {
        font-size: 1.8rem;
    }

    .story-text h2 {
        font-size: 1.3rem;
    }

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

    .service-card {
        padding: 1.5rem;
    }

    .form-section {
        padding: 2rem 1rem;
        margin: 3rem -1rem;
    }

    .cta-block {
        margin: 3rem -1rem;
    }

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
    }
}

@media (min-width: 769px) {
    .contact-info {
        flex-direction: row;
        justify-content: space-between;
    }

    .contact-block {
        flex: 1;
    }
}
