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

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.75;
    color: #2d2d2d;
    background-color: #fafafa;
}

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

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

a:hover {
    color: #0d3a6b;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* Navigation */
.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a5490;
    font-family: 'Arial', sans-serif;
}

.nav-toggle {
    display: none;
    background: none;
    font-size: 1.8rem;
    color: #2d2d2d;
}

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

.nav-menu a {
    color: #2d2d2d;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1a5490;
    transition: width 0.3s ease;
}

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

/* Editorial Container - Article-like narrow centered layout */
.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 5%;
}

/* Hero Section */
.editorial-hero {
    position: relative;
    margin-bottom: 3rem;
}

.hero-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 2px;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: #fff;
}

.hero-overlay h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: normal;
}

.hero-lead {
    font-size: 1.15rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Editorial Content */
.editorial-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #3d3d3d;
}

.drop-cap::first-letter {
    font-size: 3.5rem;
    line-height: 0.85;
    float: left;
    margin: 0.1rem 0.15rem 0 0;
    color: #1a5490;
    font-weight: bold;
}

.editorial-section {
    margin-bottom: 3.5rem;
}

.editorial-section h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: normal;
    color: #1a1a1a;
}

.editorial-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: normal;
    color: #2d2d2d;
}

.editorial-section h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #1a5490;
}

.editorial-section p {
    margin-bottom: 1.25rem;
}

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

.editorial-section li {
    margin-bottom: 0.75rem;
}

/* Inline Images */
.inline-image {
    width: 100%;
    margin: 2rem 0;
    border-radius: 2px;
}

/* Quote */
.editorial-quote {
    display: flex;
    flex-direction: column;
    border-left: 4px solid #1a5490;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    background-color: #f5f8fa;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
}

.quote-author {
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.9rem;
    color: #666;
}

/* Highlight Box */
.highlight-box {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    margin: 3rem 0;
}

/* Pillars Grid */
.pillars-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.pillar-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pillar-number {
    font-size: 2rem;
    font-weight: bold;
    color: #1a5490;
    font-family: 'Arial', sans-serif;
}

.pillar-card h4 {
    margin-bottom: 0.5rem;
}

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

.cta-inline {
    display: inline-block;
    font-size: 1.1rem;
    color: #1a5490;
    font-weight: 600;
    padding: 0.75rem 0;
    border-bottom: 2px solid #1a5490;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    color: #0d3a6b;
    border-bottom-color: #0d3a6b;
}

/* Services Preview */
.services-preview {
    margin: 4rem 0;
}

.services-preview h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
}

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    border: 1px solid #e0e0e0;
    padding: 2rem;
    background-color: #fff;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 1.3rem;
    color: #1a5490;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #555;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2d2d2d;
    margin-bottom: 1.5rem;
    font-family: 'Arial', sans-serif;
}

.btn-select-service {
    width: 100%;
    padding: 0.9rem;
    background-color: #1a5490;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #0d3a6b;
}

/* Form Section */
.editorial-form {
    margin-top: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid #ccc;
    border-radius: 2px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: #1a5490;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #0d3a6b;
}

/* Final CTA Section */
.final-cta-section {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: #1a5490;
    color: #fff;
}

.final-cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #fff;
    color: #1a5490;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0d3a6b;
    text-align: center;
    padding: 1rem;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.sticky-cta a {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

/* Footer */
.site-footer {
    background-color: #2d2d2d;
    color: #ccc;
    padding: 3rem 5% 1.5rem;
    margin-top: 5rem;
}

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

.footer-column {
    flex: 1 1 250px;
}

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

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

.footer-column ul a {
    color: #ccc;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d2d2d;
    color: #fff;
    padding: 1.5rem 5%;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

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

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

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

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

.btn-accept {
    background-color: #1a5490;
    color: #fff;
}

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

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

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

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

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: normal;
    color: #1a1a1a;
}

.header-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

/* Philosophy Points */
.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.philosophy-item h4 {
    margin-bottom: 0.75rem;
}

/* Values Grid */
.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    flex: 1 1 250px;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.value-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.value-card h4 {
    margin-bottom: 0.75rem;
    color: #1a5490;
}

.value-card p {
    font-size: 0.95rem;
    color: #555;
}

/* CTA Box */
.cta-box {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #f5f8fa;
    border: 1px solid #e0e0e0;
    margin: 3rem 0;
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a5490;
}

.cta-box p {
    margin-bottom: 2rem;
    color: #555;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a5490;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

/* Services Detail Cards */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail-card {
    border: 1px solid #e0e0e0;
    background-color: #fff;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background-color: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
}

.service-header h2 {
    font-size: 1.6rem;
    margin: 0;
}

.service-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1a5490;
    font-family: 'Arial', sans-serif;
}

.service-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-body {
    padding: 2rem;
}

.service-body h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a5490;
}

.service-body h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.75rem;
    color: #2d2d2d;
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1a5490;
}

.cta-section-bottom {
    text-align: center;
    padding: 3rem 0;
}

/* Contact Split Layout */
.contact-split {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-info-section,
.contact-form-section {
    flex: 1 1 300px;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #1a5490;
}

.small-note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 0.5rem;
}

.contact-form {
    background-color: #f9f9f9;
    padding: 2rem;
    border: 1px solid #e0e0e0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
}

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

.form-note {
    font-size: 0.85rem;
    color: #777;
    margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
    margin-top: 4rem;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #1a5490;
    margin-bottom: 0.75rem;
}

/* Thanks Page */
.thanks-page {
    text-align: center;
}

.thanks-header {
    margin-bottom: 3rem;
}

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

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

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #1a5490;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: 'Arial', sans-serif;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a5490;
}

.thanks-box-info {
    background-color: #f5f8fa;
    border-left: 4px solid #1a5490;
    padding: 1.5rem;
    margin: 2rem 0;
}

.thanks-box-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.thanks-resources {
    margin-top: 3rem;
}

.resource-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.resource-card {
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    background-color: #fff;
    transition: all 0.3s ease;
    display: block;
}

.resource-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #1a5490;
}

.resource-card h4 {
    font-size: 1.1rem;
    color: #1a5490;
    margin-bottom: 0.5rem;
}

.resource-card p {
    color: #555;
    margin: 0;
}

.thanks-cta {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
}

.thanks-cta p {
    margin-bottom: 1rem;
    color: #555;
}

.email-large {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a5490;
}

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

.legal-list {
    list-style: none;
    padding-left: 0;
}

.legal-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
}

.legal-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: bold;
}

.info-box {
    background-color: #f5f8fa;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid #1a5490;
}

/* RODO Table */
.rodo-table {
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    margin: 1.5rem 0;
}

.rodo-row {
    display: flex;
}

.rodo-row.header-row {
    background-color: #1a5490;
    color: #fff;
    font-weight: 600;
}

.rodo-cell {
    flex: 1;
    padding: 1rem;
    border-right: 1px solid #e0e0e0;
}

.rodo-cell:last-child {
    border-right: none;
}

.rodo-row:not(.header-row) {
    border-bottom: 1px solid #e0e0e0;
}

.rodo-row:last-child {
    border-bottom: none;
}

/* Cookie Table */
.cookie-table {
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    margin: 1.5rem 0;
}

.cookie-row {
    display: flex;
}

.cookie-row.header-row {
    background-color: #f9f9f9;
    font-weight: 600;
}

.cookie-cell {
    flex: 1;
    padding: 1rem;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-cell:last-child {
    border-right: none;
}

.cookie-row:last-child .cookie-cell {
    border-bottom: none;
}

.styled-list {
    list-style: none;
    padding-left: 0;
}

.styled-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
}

.styled-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

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

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

    .nav-menu li {
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 5%;
    }

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

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

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

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

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

    .rodo-row,
    .cookie-row {
        flex-direction: column;
    }

    .rodo-cell,
    .cookie-cell {
        border-right: none;
    }

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

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

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

    .editorial-container {
        padding: 2rem 4%;
    }

    .hero-overlay h1 {
        font-size: 1.5rem;
    }

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

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}