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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 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;
    min-width: 300px;
    margin: 0;
}

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

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

.btn-accept {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

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

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

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

.editorial-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-editorial {
    margin: 60px 0;
    text-align: center;
}

.hero-image-container {
    width: 100%;
    margin-bottom: 40px;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.lead-text {
    font-size: 20px;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.narrow-text {
    max-width: 680px;
    margin: 0 auto;
}

.narrow-text p {
    margin-bottom: 24px;
    font-size: 18px;
    color: #34495e;
}

.narrow-text h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 600;
}

.narrow-text h3 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.narrow-text a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px solid #3498db;
}

.narrow-text a:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

.inline-image {
    margin: 50px 0;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.editorial-quote {
    font-size: 24px;
    font-style: italic;
    color: #2c3e50;
    border-left: 4px solid #3498db;
    padding-left: 30px;
    margin: 50px 0;
    line-height: 1.6;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

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

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

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

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

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

.service-card p {
    margin: 0 24px 16px;
    color: #34495e;
    font-size: 16px;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin: 24px 24px 16px;
}

.btn-select {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.testimonials-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.testimonial {
    margin: 40px 0;
    padding: 30px;
    background-color: #ffffff;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.testimonial p {
    font-size: 18px;
    color: #34495e;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 16px;
    color: #7f8c8d;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 0;
}

.disclaimer-section {
    padding: 60px 20px;
    background-color: #ecf0f1;
}

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

.references-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

.references-list li {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6;
}

.references-list a {
    color: #3498db;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

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

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

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

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

.footer-column p {
    margin-bottom: 12px;
    color: #bdc3c7;
    font-size: 14px;
}

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

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

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

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

.about-hero {
    padding: 80px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.about-hero h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-content {
    padding: 60px 20px;
}

.about-image {
    margin: 50px 0;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-hero {
    padding: 80px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.services-hero h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.services-content {
    padding: 60px 20px;
}

.services-grid {
    max-width: 1200px;
    margin: 50px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-item {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-item p {
    color: #34495e;
    margin-bottom: 16px;
}

.service-item .price {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
}

.contact-hero {
    padding: 80px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-hero h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.contact-content {
    padding: 60px 20px;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

.contact-info p {
    margin-bottom: 24px;
    color: #34495e;
}

.thanks-hero {
    padding: 120px 20px;
    text-align: center;
    background-color: #f8f9fa;
}

.thanks-hero h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.thanks-content {
    padding: 60px 20px;
}

.legal-page {
    padding: 60px 20px;
}

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

.legal-page h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-page p,
.legal-page ul,
.legal-page ol {
    margin-bottom: 20px;
    color: #34495e;
}

.legal-page ul,
.legal-page ol {
    padding-left: 24px;
}

.legal-page li {
    margin-bottom: 12px;
}

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

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

    .lead-text {
        font-size: 18px;
    }

    .narrow-text h2 {
        font-size: 28px;
    }

    .editorial-quote {
        font-size: 20px;
        padding-left: 20px;
    }

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

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

    .services-grid {
        flex-direction: column;
    }
}