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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fefefe;
}

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

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

.logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
}

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

.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #2c2c2c;
}

.ad-disclosure {
    font-size: 0.8rem;
    color: #888;
    padding: 0.3rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

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

.hero-editorial {
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

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

.hero-text-overlay {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-text-overlay h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.hero-text-overlay .lead {
    font-size: 1.4rem;
    font-weight: 300;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

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

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.content-narrow p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.content-narrow h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.content-narrow h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.inline-cta {
    margin: 3rem 0;
    text-align: center;
}

.btn-text-link {
    font-size: 1.1rem;
    color: #2c2c2c;
    text-decoration: none;
    border-bottom: 2px solid #2c2c2c;
    padding-bottom: 2px;
    transition: opacity 0.2s;
}

.btn-text-link:hover {
    opacity: 0.7;
}

.btn-primary {
    display: inline-block;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.btn-large {
    padding: 1.1rem 2.8rem;
    font-size: 1.1rem;
}

.btn-secondary {
    display: inline-block;
    background-color: #f5f5f5;
    color: #2c2c2c;
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.inline-image {
    margin: 3rem 0;
    border-radius: 8px;
    overflow: hidden;
}

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

.caption {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    text-align: center;
    margin-top: -2rem;
    margin-bottom: 2rem;
}

.editorial-list {
    margin: 2rem 0;
    padding-left: 2rem;
}

.editorial-list li {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-inline {
    margin: 4rem 0;
    background-color: #f9f9f9;
    padding: 4rem 2rem;
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 2rem;
    border-radius: 8px;
}

.testimonial-image {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
}

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

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

.testimonial-text cite {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

.services-reveal {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    padding: 2rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background-color: #ffffff;
}

.service-card.featured {
    border: 2px solid #2c2c2c;
}

.service-image {
    flex-shrink: 0;
    width: 280px;
    height: 200px;
    border-radius: 6px;
    overflow: hidden;
}

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

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #555;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    color: #666;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c2c2c;
    font-weight: bold;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c2c2c;
    margin: 1.5rem 0;
}

.select-service {
    margin-top: 1rem;
}

.editorial-form {
    margin: 3rem 0;
    max-width: 600px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

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

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

.footer-editorial {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #bbb;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #2c2c2c;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}

.cookie-content a {
    color: #2c2c2c;
    text-decoration: underline;
}

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

.contact-info {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-block p {
    color: #555;
}

.thanks-page {
    text-align: center;
    padding: 6rem 2rem;
}

.thanks-confirmation {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f5f5f5;
    border-radius: 6px;
}

.thanks-confirmation p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c2c2c;
}

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

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

    .hero-text-overlay .lead {
        font-size: 1.1rem;
    }

    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }

    .service-card {
        flex-direction: column;
    }

    .service-image {
        width: 100%;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}