* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.brand h1 {
    font-size: 1.5rem;
    color: #1a5490;
    font-weight: 600;
}

.ad-label {
    font-size: 0.75rem;
    color: #666;
    font-style: italic;
    padding: 0.25rem 0.75rem;
    background-color: #f0f0f0;
    border-radius: 3px;
}

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

.nav a {
    text-decoration: none;
    color: #34495e;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.nav a:hover {
    color: #1a5490;
}

.editorial-main {
    background-color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

.editorial-article {
    display: flex;
    flex-direction: column;
}

.hero-editorial {
    position: relative;
    margin-bottom: 3rem;
}

.hero-image-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #e8eef3;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0 2rem;
}

.hero-text-overlay h2 {
    font-size: 2.8rem;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    font-weight: 400;
    line-height: 1.3;
}

.article-body {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.intro-section {
    margin-bottom: 3rem;
}

.lead {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #1a5490;
    margin-bottom: 2rem;
    font-weight: 500;
}

.article-body p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.inline-image-section {
    margin: 3rem 0;
    text-align: center;
}

.inline-image-section img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 4px;
    background-color: #e8eef3;
}

.image-caption {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.services-preview {
    margin: 4rem 0;
}

.services-preview h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a5490;
}

.service-inline-block {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #1a5490;
}

.service-inline-block h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.service-inline-block p {
    margin-bottom: 0.5rem;
}

.price-inline {
    font-size: 1.2rem;
    color: #1a5490;
    font-weight: 600;
    margin-top: 0.75rem;
}

.inline-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    margin: 2rem 0;
    border-radius: 4px;
    background-color: #e8eef3;
}

.cta-inline {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #1a5490;
    color: #ffffff;
    text-align: center;
    border-radius: 4px;
}

.cta-inline p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-link {
    display: inline-block;
    background-color: #ffffff;
    color: #1a5490;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #f0f0f0;
}

.story-section {
    margin: 4rem 0;
}

.story-section h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a5490;
}

.form-section {
    margin: 4rem 0;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

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

.editorial-form {
    margin-top: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
}

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

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

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

.disclaimer-section {
    margin: 3rem 0;
    padding: 1.5rem;
    background-color: #fff8e1;
    border-left: 4px solid #ffa000;
    border-radius: 4px;
}

.disclaimer {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

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

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

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

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #34495e;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.btn-cookie {
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

#cookie-accept:hover {
    background-color: #229954;
}

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

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

.thanks-container {
    max-width: 700px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.thanks-container h2 {
    font-size: 2.2rem;
    color: #1a5490;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-container .btn-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: #1a5490;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.thanks-container .btn-home:hover {
    background-color: #144073;
}

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

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 2rem;
    transition: box-shadow 0.3s ease;
}

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

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

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

.service-card .price {
    font-size: 1.3rem;
    color: #1a5490;
    font-weight: 600;
    margin-top: 1rem;
}

.page-header {
    background-color: #1a5490;
    color: #ffffff;
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.page-header h2 {
    font-size: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-content {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    background-color: #ffffff;
}

.page-content h3 {
    font-size: 1.8rem;
    color: #1a5490;
    margin: 2.5rem 0 1rem;
}

.page-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.page-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.page-content ul li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

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

.contact-info h4 {
    font-size: 1.2rem;
    color: #1a5490;
    margin-bottom: 1rem;
}

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

@media (max-width: 768px) {
    .hero-text-overlay h2 {
        font-size: 2rem;
    }

    .article-body {
        padding: 0 1.5rem 3rem;
    }

    .lead {
        font-size: 1.2rem;
    }

    .article-body p {
        font-size: 1rem;
    }

    .nav {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .service-card {
        flex: 1 1 100%;
    }
}