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

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    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;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #2563eb;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.nav-links a:hover {
    color: #2563eb;
}

.ad-label {
    font-size: 0.8rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background-color: #f0f0f0;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
}

.editorial-main {
    background-color: #ffffff;
}

.hero-editorial {
    position: relative;
    margin-bottom: 3rem;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    padding: 3rem 2rem;
    color: #ffffff;
}

.hero-overlay h1 {
    max-width: 800px;
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    opacity: 0.95;
    font-style: italic;
}

.content-wrapper {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.intro-section {
    margin-bottom: 3rem;
}

.lead-paragraph {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-section p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.insight-section {
    margin: 4rem 0;
}

.insight-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    line-height: 1.3;
    color: #1a1a1a;
}

.insight-content img {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 4px;
    background-color: #e5e5e5;
}

.insight-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.insight-content a {
    color: #2563eb;
    text-decoration: none;
    border-bottom: 1px solid #2563eb;
}

.problem-section {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.problem-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.problem-section > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.problem-list {
    margin-top: 2rem;
}

.problem-item {
    margin-bottom: 2rem;
}

.problem-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #c53030;
}

.problem-item p {
    font-size: 1.05rem;
    color: #4a4a4a;
}

.cta-inline {
    margin: 4rem 0;
}

.cta-box {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-left: 4px solid #2563eb;
    border-radius: 4px;
}

.cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.cta-link {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #1d4ed8;
}

.methodology-section {
    margin: 4rem 0;
}

.methodology-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.methodology-section img {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 4px;
    background-color: #e5e5e5;
}

.methodology-section > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.principles-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.principle {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.principle h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2563eb;
}

.principle p {
    font-size: 1.05rem;
    color: #4a4a4a;
}

.testimonials-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background-color: #fafafa;
    margin-left: -2rem;
    margin-right: -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.testimonials-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.testimonial {
    margin-bottom: 2.5rem;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #2c2c2c;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 1rem;
    color: #666;
    font-family: 'Arial', sans-serif;
}

.services-overview {
    margin: 4rem 0;
}

.services-overview h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.services-intro {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #4a4a4a;
}

.service-card {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e5e5e5;
}

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

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-card img {
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    background-color: #e5e5e5;
}

.service-card p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.service-card .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2563eb;
    margin: 1.5rem 0;
    font-family: 'Arial', sans-serif;
}

.btn-select {
    padding: 0.9rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #2563eb;
}

.form-section {
    margin: 4rem 0;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin-left: -2rem;
    margin-right: -2rem;
}

.form-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #2c2c2c;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1rem 3rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #1d4ed8;
}

.disclaimer-section {
    margin: 4rem 0;
    padding: 2rem;
    background-color: #fffbeb;
    border-left: 4px solid #f59e0b;
    border-radius: 4px;
}

.disclaimer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #92400e;
}

.disclaimer-section p {
    font-size: 0.95rem;
    color: #78350f;
    line-height: 1.6;
}

.references-section {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f3f4f6;
    border-radius: 4px;
}

.references-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.reference {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    color: #4a4a4a;
}

.reference a {
    color: #2563eb;
    text-decoration: none;
}

.reference a:hover {
    text-decoration: underline;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

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

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

.footer-col p {
    font-size: 0.95rem;
    color: #d1d5db;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #9ca3af;
}

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

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .content-wrapper {
        padding: 0 1.5rem 3rem;
    }

    .lead-paragraph {
        font-size: 1.15rem;
    }

    .insight-section h2,
    .problem-section h2,
    .methodology-section h2,
    .services-overview h2 {
        font-size: 1.6rem;
    }

    .testimonials-section,
    .form-section {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}

.page-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-header p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

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

.service-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-item p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.service-item .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2563eb;
    margin-top: 1.5rem;
}

.contact-info {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
}

.info-item p {
    font-size: 1rem;
    color: #4a4a4a;
}

.thanks-container {
    max-width: 800px;
    margin: 5rem auto;
    padding: 3rem;
    text-align: center;
    background-color: #f0fdf4;
    border-radius: 8px;
    border: 2px solid #86efac;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #166534;
}

.thanks-container p {
    font-size: 1.2rem;
    color: #15803d;
    margin-bottom: 1rem;
}

.thanks-container .selected-service {
    font-weight: 700;
    color: #166534;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.9rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.back-link:hover {
    background-color: #1d4ed8;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
}

.legal-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content ul li {
    margin-bottom: 0.7rem;
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.about-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 2rem 0;
    border-radius: 8px;
    background-color: #e5e5e5;
}