* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    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: 20px;
}

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

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 3px;
}

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

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

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

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

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
}

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

.hero-image-container img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-text {
    max-width: 800px;
    margin: -120px auto 0;
    position: relative;
    background-color: #ffffff;
    padding: 50px 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.3;
    color: #2c3e50;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: #7f8c8d;
    font-weight: 300;
}

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

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 30px;
}

.content-narrow p {
    margin-bottom: 25px;
    font-size: 18px;
}

.content-narrow h2 {
    font-size: 32px;
    color: #2c3e50;
    margin: 50px 0 25px;
    line-height: 1.3;
}

.content-narrow h3 {
    font-size: 24px;
    color: #2c3e50;
    margin: 30px 0 20px;
}

.inline-image-block {
    margin: 50px 0;
    padding: 0;
    overflow: hidden;
}

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

.image-caption {
    padding: 20px;
    font-style: italic;
    color: #7f8c8d;
    font-size: 16px;
    text-align: center;
}

.cta-inline {
    margin: 40px 0;
    text-align: center;
}

.cta-link {
    display: inline-block;
    color: #3498db;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #3498db;
    padding-bottom: 5px;
    transition: color 0.3s, border-color 0.3s;
}

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

.content-list {
    margin: 30px 0;
    padding-left: 25px;
}

.content-list li {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.7;
}

.testimonial-block {
    background-color: #f8f9fa;
    padding: 40px;
    margin: 50px 0;
    border-left: 4px solid #3498db;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 16px;
    color: #7f8c8d;
    text-align: right;
}

.cta-block-central {
    background-color: #3498db;
    color: #ffffff;
    padding: 50px 40px;
    margin: 60px 0;
    text-align: center;
}

.cta-block-central h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-block-central p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #ecf0f1;
}

.services-editorial {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

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

.service-card {
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.service-content {
    padding: 40px;
}

.service-content h3 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 15px;
}

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

.service-details {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
}

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

.btn-select-service {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #2980b9;
}

.btn-select-service.selected {
    background-color: #27ae60;
}

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

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

.form-notice {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 4px;
    text-align: center;
    font-size: 16px;
}

.form-notice.success {
    background-color: #d4edda;
    border-color: #28a745;
    color: #155724;
}

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

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

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

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

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    background-color: #95a5a6;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.btn-submit {
    width: 100%;
}

.disclaimer-section {
    background-color: #f8f9fa;
    padding: 40px;
    margin-top: 60px;
}

.disclaimer {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
    border-left: 3px solid #e1e8ed;
    padding-left: 20px;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

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

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

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

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

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

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

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

    .nav-menu {
        width: 100%;
        flex-direction: column;
        gap: 15px;
    }

    .hero-text {
        margin: -80px 20px 0;
        padding: 30px;
    }

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

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

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

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

    .content-narrow p,
    .content-list li {
        font-size: 16px;
    }

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

.simple-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.simple-page h1 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.simple-page h2 {
    font-size: 28px;
    color: #2c3e50;
    margin: 40px 0 20px;
}

.simple-page h3 {
    font-size: 22px;
    color: #34495e;
    margin: 30px 0 15px;
}

.simple-page p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495e;
}

.simple-page ul,
.simple-page ol {
    margin: 20px 0 20px 25px;
}

.simple-page li {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.7;
}

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

.contact-info {
    background-color: #f8f9fa;
    padding: 40px;
    margin: 30px 0;
    border-radius: 4px;
}

.contact-info h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

.contact-info strong {
    color: #2c3e50;
}

.thanks-page {
    max-width: 700px;
    margin: 0 auto;
    padding: 100px 40px;
    text-align: center;
}

.thanks-page h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-page p {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 20px;
}

.thanks-page .btn-primary {
    margin-top: 30px;
}