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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #5a6c7d;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.editorial-content {
    max-width: 100%;
}

.hero-editorial {
    padding: 80px 20px;
    background-color: #fafbfc;
}

.hero-text-narrow {
    max-width: 680px;
    margin: 0 auto 60px;
    text-align: center;
}

.hero-text-narrow h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 700;
}

.lead-text {
    font-size: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.hero-image {
    max-width: 900px;
    margin: 0 auto;
    background-color: #e9ecef;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 20px;
}

.content-narrow h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a202c;
    line-height: 1.3;
    font-weight: 700;
}

.content-narrow h3 {
    font-size: 26px;
    margin: 50px 0 20px;
    color: #2d3748;
    font-weight: 600;
}

.content-narrow p {
    margin-bottom: 24px;
    font-size: 17px;
    color: #4a5568;
}

.inline-image {
    margin: 50px 0;
    background-color: #f7fafc;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.inline-image figcaption {
    padding: 16px 0;
    font-size: 15px;
    color: #718096;
    font-style: italic;
    text-align: center;
}

.cta-inline {
    margin: 50px 0;
    padding: 35px;
    background-color: #edf2f7;
    border-left: 4px solid #4299e1;
    border-radius: 4px;
}

.cta-inline p {
    margin-bottom: 18px;
    font-size: 18px;
    color: #2d3748;
}

.btn-text {
    color: #2b6cb0;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 2px solid #4299e1;
    transition: border-color 0.3s ease;
}

.btn-text:hover {
    border-color: #2b6cb0;
}

.services-showcase {
    background-color: #f7fafc;
    padding: 80px 20px;
}

.section-intro {
    font-size: 18px;
    color: #4a5568;
    margin-top: 20px;
}

.service-cards-editorial {
    max-width: 900px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
}

.service-card img {
    width: 100%;
    height: auto;
    display: block;
}

.card-content {
    padding: 35px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a202c;
    font-weight: 600;
}

.card-content p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.price {
    font-size: 20px;
    color: #2d3748;
    font-weight: 700;
    margin: 24px 0 20px;
}

.btn-service {
    background-color: #4299e1;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #3182ce;
}

.form-section {
    background-color: #ffffff;
    padding: 80px 20px;
}

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

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3748;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    color: #2d3748;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: #48bb78;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    background-color: #f7fafc;
    border-top: 1px solid #e2e8f0;
}

.disclaimer {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
    text-align: center;
}

.main-footer {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 60px 20px 30px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: #ffffff;
}

.footer-section p {
    font-size: 15px;
    color: #cbd5e0;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #4a5568;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #a0aec0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    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;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    color: #e2e8f0;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #48bb78;
    color: #ffffff;
}

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

.btn-reject {
    background-color: transparent;
    color: #e2e8f0;
    border: 2px solid #4a5568;
}

.btn-reject:hover {
    border-color: #718096;
}

.page-header {
    background-color: #f7fafc;
    padding: 80px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: #1a202c;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.page-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.page-content h2 {
    font-size: 28px;
    margin: 50px 0 20px;
    color: #2d3748;
}

.page-content h3 {
    font-size: 22px;
    margin: 35px 0 16px;
    color: #2d3748;
}

.page-content p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.page-content ul,
.page-content ol {
    margin: 20px 0 20px 30px;
    color: #4a5568;
}

.page-content li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-info {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.info-item {
    background-color: #f7fafc;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #4299e1;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d3748;
}

.info-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #f7fafc;
    border-radius: 12px;
}

.thanks-container h1 {
    font-size: 38px;
    color: #1a202c;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #4299e1;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.thanks-container a:hover {
    background-color: #3182ce;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }

    .hero-text-narrow h1 {
        font-size: 36px;
    }

    .content-narrow h2 {
        font-size: 30px;
    }

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

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