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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

.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;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

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

.editorial-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 60px 30px;
}

.article-header {
    margin-bottom: 50px;
}

.header-image {
    width: 100%;
    height: 480px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 4px;
    margin-bottom: 40px;
}

.header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    padding: 50px 40px;
    color: #ffffff;
}

.header-overlay h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
}

.header-subtitle {
    font-size: 18px;
    line-height: 1.5;
    opacity: 0.95;
}

.page-header {
    margin-bottom: 40px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 25px;
}

.page-header h1 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 18px;
    color: #6c757d;
}

.article-body {
    color: #2c3e50;
}

.intro-section {
    margin-bottom: 45px;
}

.lead-paragraph {
    font-size: 20px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

.story-section {
    margin: 45px 0;
}

.story-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.story-section h3 {
    font-size: 22px;
    margin: 25px 0 15px 0;
    color: #34495e;
    font-weight: 600;
}

.story-section p {
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.8;
}

.content-image-inline {
    margin: 50px 0;
    width: 100%;
    background-color: #f8f9fa;
}

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

.inline-cta {
    background-color: #ecf0f1;
    padding: 30px;
    margin: 45px 0;
    border-left: 4px solid #3498db;
}

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

.cta-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    padding-bottom: 2px;
    transition: all 0.3s;
}

.cta-link:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

.insight-section {
    margin: 60px 0;
    padding: 40px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.insight-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.insight-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.services-preview {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 35px 0;
}

.service-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 4px;
    border-left: 4px solid #3498db;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 15px;
}

.price {
    display: block;
    font-weight: 700;
    color: #27ae60;
    font-size: 18px;
    margin-top: 10px;
}

.cta-center {
    text-align: center;
    margin-top: 35px;
}

.cta-button {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #2980b9;
}

.cta-button-secondary {
    display: inline-block;
    background-color: #95a5a6;
    color: #ffffff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
    margin-left: 15px;
}

.cta-button-secondary:hover {
    background-color: #7f8c8d;
}

.contact-section {
    margin: 60px 0;
    padding: 40px 0;
    border-top: 1px solid #e9ecef;
}

.contact-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.editorial-form {
    margin-top: 35px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-button {
    background-color: #3498db;
    color: #ffffff;
    padding: 15px 45px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #2980b9;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 45px;
    margin: 40px 0;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-color: #ecf0f1;
}

.service-detail-content {
    padding: 35px;
}

.service-detail-content h2 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #34495e;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #27ae60;
    margin-top: 20px;
}

.cta-section {
    text-align: center;
    margin: 60px 0;
    padding: 45px 35px;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.cta-section h2 {
    font-size: 30px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.cta-section p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #34495e;
}

.contact-info-section {
    margin: 50px 0;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-details h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.thanks-container {
    text-align: center;
    padding: 40px 0;
}

.thanks-content {
    margin-bottom: 50px;
}

.thanks-content h1 {
    font-size: 36px;
    color: #27ae60;
    margin-bottom: 25px;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 30px;
}

.thanks-service-info {
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 4px;
    margin: 25px 0;
}

.thanks-service-info p {
    font-size: 16px;
    margin: 0;
}

.thanks-next-steps {
    text-align: left;
    margin: 40px 0;
}

.thanks-next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-next-steps ol {
    padding-left: 25px;
}

.thanks-next-steps li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #34495e;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.legal-page .article-body {
    font-size: 15px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-section h3 {
    font-size: 19px;
    margin: 20px 0 12px 0;
    color: #34495e;
    font-weight: 600;
}

.legal-section p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-section ul {
    padding-left: 25px;
    margin-bottom: 15px;
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.disclaimer-section {
    background-color: #fff3cd;
    padding: 25px;
    border-left: 4px solid #ffc107;
    margin-top: 40px;
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 30px 25px 30px;
    margin-top: 80px;
}

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

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    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: 25px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.cookie-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #7f8c8d;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .editorial-content {
        padding: 40px 20px;
    }

    .header-overlay h1 {
        font-size: 30px;
    }

    .header-subtitle {
        font-size: 16px;
    }

    .page-header h1 {
        font-size: 30px;
    }

    .story-section h2 {
        font-size: 24px;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .cta-button-secondary {
        margin-left: 0;
    }
}