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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    display: none;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: white;
}

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

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

.header {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

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

.editorial-container {
    max-width: 720px;
    margin: 60px auto;
    padding: 0 20px;
}

.editorial-content {
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 2px;
}

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

.hero-text-narrow {
    margin-bottom: 40px;
}

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

.hero-intro {
    font-size: 20px;
    color: #555555;
    line-height: 1.6;
}

.editorial-image {
    margin: 40px 0;
    background-color: #e8eef2;
}

.editorial-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.content-block h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 600;
}

.content-block p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #333333;
}

.content-block p a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.content-block p a:hover {
    text-decoration: underline;
}

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

.editorial-quote {
    font-size: 22px;
    font-style: italic;
    color: #2c3e50;
    line-height: 1.6;
}

.editorial-image-inline {
    margin: 30px 0;
    background-color: #e8eef2;
}

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

.services-editorial {
    margin: 70px 0;
}

.services-editorial h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 600;
}

.section-intro {
    font-size: 18px;
    color: #555555;
    margin-bottom: 40px;
}

.service-card-editorial {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.service-card-editorial:last-child {
    border-bottom: none;
}

.service-card-editorial h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 14px;
    font-weight: 600;
}

.service-card-editorial p {
    font-size: 17px;
    color: #444444;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.price {
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
}

.btn-select-service {
    padding: 12px 28px;
    background-color: #3498db;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.testimonial-section {
    margin: 60px 0;
}

.testimonial-card {
    background-color: #f7f9fb;
    padding: 30px;
    margin-bottom: 25px;
    border-left: 3px solid #3498db;
}

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

.testimonial-author {
    font-size: 15px;
    color: #7f8c8d;
    font-style: normal;
}

.form-section {
    margin: 70px 0;
    padding: 50px;
    background-color: #f7f9fb;
    border-radius: 4px;
}

.form-section h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.form-section > p {
    font-size: 17px;
    color: #555555;
    margin-bottom: 30px;
}

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

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

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

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f0f0f0;
    cursor: not-allowed;
}

.btn-submit {
    padding: 14px 36px;
    background-color: #27ae60;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 17px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.disclaimer-section {
    margin: 60px 0 40px 0;
    padding: 30px;
    background-color: #fef9e7;
    border-left: 4px solid #f39c12;
}

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

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 20px 20px;
    margin-top: 80px;
}

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

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

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

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

.footer-links {
    list-style: none;
}

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

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

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

.references-list {
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 13px;
}

.references-list a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.references-list a:hover {
    color: #3498db;
}

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

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

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

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

.thanks-container p {
    font-size: 18px;
    color: #555555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.thanks-container a:hover {
    background-color: #2980b9;
}

.contact-page-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.contact-content {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 4px;
}

.contact-content h1 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.contact-info {
    margin-top: 40px;
}

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

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

.contact-info-item p {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
}

.legal-page-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.legal-content {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 4px;
}

.legal-content h1 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.legal-content h2 {
    font-size: 26px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content p {
    font-size: 16px;
    color: #444444;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    color: #444444;
    margin-bottom: 10px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

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

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

    .hero-intro {
        font-size: 18px;
    }

    .content-block h2 {
        font-size: 26px;
    }

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

    .service-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-section {
        padding: 30px 20px;
    }
}