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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

a:hover {
    color: #2980b9;
}

/* Navigation */
.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

/* Editorial Wrapper - Main Container */
.editorial-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.hero-text-center h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #1a252f;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.25rem;
    color: #546e7a;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 2rem;
}

.hero-image {
    margin: 3rem 0 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    object-fit: cover;
}

/* Editorial Content */
.editorial-content {
    padding: 2rem 0 4rem;
}

.text-column {
    max-width: 700px;
    margin: 0 auto;
}

.text-column p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #34495e;
}

.lead {
    font-size: 1.35rem;
    line-height: 1.7;
    color: #2c3e50;
    font-weight: 500;
    margin-bottom: 2rem;
}

.text-column h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
    font-weight: 700;
    line-height: 1.3;
}

.text-column h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.text-column h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
    font-weight: 600;
}

/* Inline Images */
.inline-image {
    margin: 2.5rem 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.inline-image img {
    width: 100%;
}

/* Blockquotes */
blockquote {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid #3498db;
    background-color: #f8f9fa;
    font-style: italic;
    color: #546e7a;
}

blockquote p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

blockquote cite {
    display: block;
    margin-top: 0.75rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #7f8c8d;
}

/* Lists */
.styled-list {
    margin: 1.5rem 0 1.5rem 1.5rem;
    list-style: disc;
}

.styled-list li {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #34495e;
}

/* Service Cards */
.services-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    padding: 2rem;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: #3498db;
    box-shadow: 0 8px 24px rgba(52, 152, 219, 0.1);
    transform: translateY(-2px);
}

.service-card.featured {
    border-color: #3498db;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
}

.badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background-color: #3498db;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #1a252f;
    margin-bottom: 1rem;
    margin-top: 0;
}

.service-card p {
    font-size: 1rem;
    color: #546e7a;
    margin-bottom: 1.25rem;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 1.5rem 0;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-primary-large {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

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

.btn-secondary:hover {
    background-color: #bdc3c7;
    color: #1a252f;
}

.btn-primary-large {
    background-color: #3498db;
    color: #ffffff;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.btn-primary-large:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.btn-text-link {
    color: #3498db;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.btn-text-link:hover {
    color: #2980b9;
}

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

.cta-block {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8fbff 0%, #ecf6ff 100%);
    border-radius: 8px;
    text-align: center;
    border: 1px solid #d6e9f8;
}

.cta-block h3 {
    font-size: 1.75rem;
    color: #1a252f;
    margin-bottom: 1rem;
    margin-top: 0;
}

.cta-block p {
    font-size: 1.125rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
}

.cta-final {
    text-align: center;
    margin: 3rem 0;
}

/* Testimonials */
.testimonials-group {
    margin: 2rem 0;
}

.testimonials-group blockquote {
    margin-bottom: 2rem;
}

/* Page Header */
.page-header {
    padding: 3rem 0 2rem;
    text-align: center;
    border-bottom: 1px solid #ecf0f1;
    margin-bottom: 2rem;
}

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

/* Service Detail Cards */
.service-detail-card {
    margin: 3rem 0;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    position: relative;
}

.service-detail-card.featured-service {
    border-color: #3498db;
}

.service-header {
    padding: 2rem;
    background-color: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h3 {
    font-size: 1.75rem;
    color: #1a252f;
    margin: 0;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    margin: 0;
}

.service-body {
    padding: 2rem;
}

.service-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 2rem;
}

.service-select-btn {
    width: 100%;
    margin-top: 1.5rem;
}

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

.contact-method {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.contact-method h3 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.contact-method p {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.contact-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    margin: 2rem 0;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.faq-item h3 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.faq-item p {
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow-y: auto;
    padding: 2rem;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.modal-content {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    position: relative;
    margin: 2rem auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #7f8c8d;
    line-height: 1;
}

.modal-close:hover {
    color: #2c3e50;
}

.modal h2 {
    font-size: 2rem;
    color: #1a252f;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 1.125rem;
    color: #546e7a;
    margin-bottom: 0.5rem;
}

.modal-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 2rem;
}

/* Forms */
.enrollment-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #ecf0f1;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

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

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

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

.thanks-content h1 {
    font-size: 2.5rem;
    color: #1a252f;
    margin-bottom: 1.5rem;
}

.next-steps {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    text-align: left;
}

.step h3 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.step p {
    font-size: 1rem;
    margin-bottom: 0;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.link-card {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border: 2px solid #ecf0f1;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: left;
}

.link-card:hover {
    border-color: #3498db;
    background-color: #ffffff;
}

.link-card h3 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.link-card p {
    font-size: 0.95rem;
    color: #546e7a;
    margin-bottom: 0;
}

.thanks-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ecf0f1;
}

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

.legal-page h2 {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #ecf0f1;
}

.legal-page h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #ecf0f1;
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
}

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

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

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

/* Footer */
.footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

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

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

.footer-column h4 {
    font-size: 1.125rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.95rem;
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1500;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

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

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

.btn-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #6c7a7b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        border-bottom: 1px solid #ecf0f1;
        padding: 1rem 2rem;
        gap: 1rem;
    }

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

    .nav-toggle {
        display: block;
    }

    .hero-text-center h1 {
        font-size: 2.25rem;
    }

    .subtitle {
        font-size: 1.125rem;
    }

    .text-column p,
    .lead {
        font-size: 1.05rem;
    }

    .text-column h2 {
        font-size: 1.75rem;
    }

    .editorial-wrapper {
        padding: 0 1.5rem;
    }

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

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

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

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

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

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

    .modal-content {
        padding: 1.5rem;
        margin: 1rem auto;
    }

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

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .hero-text-center h1 {
        font-size: 1.875rem;
    }

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