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

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

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    font-size: 0.75rem;
    text-align: center;
    padding: 0.4rem 1rem;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav-links a {
    color: #5a6c7d;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

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

.hero-image {
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: center;
    background-color: #34495e;
    border-radius: 4px;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2.5rem 2rem;
    border-radius: 0 0 4px 4px;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 400;
}

.content-flow {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.text-block {
    padding: 0 1rem;
}

.text-block h2 {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.text-block p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #3d4852;
}

.inline-image {
    width: 100%;
    margin: 2rem 0;
}

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

.cta-inline {
    text-align: center;
    padding: 2rem 0;
}

.cta-link {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 1rem;
    transition: background-color 0.2s;
}

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

.pillars-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1rem;
    background-color: #f5f7fa;
    border-radius: 4px;
}

.pillar h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.pillar p {
    font-size: 1rem;
    color: #4a5568;
}

.services-preview {
    padding: 3rem 0;
}

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

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #5a6c7d;
    padding: 0 1rem;
}

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 4px;
    padding: 2rem;
    transition: box-shadow 0.2s;
}

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

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

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

.service-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.2rem;
}

.select-service {
    width: 100%;
    padding: 0.9rem;
    background-color: #34495e;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.select-service:hover {
    background-color: #2c3e50;
}

.form-container {
    background-color: #f5f7fa;
    padding: 2.5rem 2rem;
    border-radius: 4px;
    margin-top: 2rem;
}

.form-container h2 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #cbd5e0;
    border-radius: 3px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #ffffff;
}

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

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.testimonial {
    background-color: #f5f7fa;
    padding: 2rem;
    border-left: 4px solid #34495e;
    border-radius: 4px;
    font-style: italic;
    margin: 2rem 0;
}

.testimonial p {
    font-size: 1.05rem;
    color: #3d4852;
    margin-bottom: 1rem;
}

.testimonial cite {
    display: block;
    font-size: 0.95rem;
    color: #5a6c7d;
    font-style: normal;
    text-align: right;
}

.disclaimer-section {
    background-color: #fff8e1;
    padding: 2rem;
    border-radius: 4px;
    margin-top: 3rem;
}

.disclaimer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.disclaimer-section p {
    font-size: 0.9rem;
    color: #5a6c7d;
    line-height: 1.6;
}

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

.footer-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

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

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

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

.footer-info p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

.email-display {
    font-size: 0.85rem;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #e1e8ed;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 1.5rem 2rem;
    z-index: 200;
    display: none;
}

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

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

.cookie-content p {
    font-size: 0.9rem;
    color: #5a6c7d;
    flex: 1;
}

.cookie-content a {
    color: #2c3e50;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 3px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cookie-btn.accept {
    background-color: #2c3e50;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #1a252f;
}

.cookie-btn.reject {
    background-color: #e1e8ed;
    color: #5a6c7d;
}

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

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}