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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-gray: #ecf0f1;
    --medium-gray: #bdc3c7;
    --dark-gray: #7f8c8d;
    --background: #ffffff;
    --success-green: #27ae60;
    --spacing-unit: 1.5rem;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--background);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
    min-width: 300px;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

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

.btn-accept {
    background: var(--success-green);
    color: white;
}

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

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

.btn-reject:hover {
    background: white;
    color: var(--primary-color);
}

.header-editorial {
    background: white;
    border-bottom: 1px solid var(--light-gray);
    position: sticky;
    top: 0;
    z-index: 100;
}

.ad-disclosure {
    background: var(--light-gray);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    color: var(--dark-gray);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

.editorial-flow {
    min-height: 70vh;
}

.hero-editorial {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: var(--light-gray);
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 3rem 2rem;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-overlay h1 {
    color: white;
    font-size: 2.5rem;
    max-width: 800px;
    text-align: center;
    line-height: 1.3;
}

.page-hero {
    background: var(--light-gray);
    padding: 4rem 2rem;
    text-align: center;
}

.hero-text-only h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    font-style: italic;
}

.content-narrative {
    padding: 4rem 2rem;
}

.text-centered {
    max-width: 700px;
    margin: 0 auto;
}

.lead-paragraph {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 500;
}

.content-narrative p {
    margin-bottom: 1.5rem;
}

.content-narrative h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.4;
}

.content-narrative h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.inline-visual {
    margin: 3rem 0;
    background: var(--light-gray);
}

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

.quote-block {
    font-size: 1.5rem;
    font-style: italic;
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid var(--secondary-color);
    background: var(--light-gray);
    color: var(--primary-color);
}

.visual-split {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin: 3rem 0;
    align-items: center;
}

.visual-split.reverse {
    flex-direction: row-reverse;
}

.split-text,
.split-image {
    flex: 1;
}

.split-image {
    background: var(--light-gray);
}

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

.services-inline {
    margin: 3rem 0;
}

.service-card {
    margin-bottom: 4rem;
    background: white;
    border: 1px solid var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
}

.service-card img {
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.service-card .price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--accent-color);
    margin: 1.5rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-inline {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cta-inline:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.testimonial-inline {
    background: var(--light-gray);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--dark-gray);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-section {
    background: var(--primary-color);
    color: white;
    padding: 3rem 2rem;
    margin: 4rem -2rem 3rem -2rem;
    text-align: center;
    border-radius: 8px;
}

.cta-section h3 {
    color: white;
    margin-top: 0;
}

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.citation {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.9em;
    vertical-align: super;
}

.form-section {
    background: var(--light-gray);
    padding: 3rem 2rem;
    margin: 4rem -2rem 3rem -2rem;
    border-radius: 8px;
}

.form-section h2 {
    margin-top: 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-submit {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 8px;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.references-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
}

.references-list {
    list-style: decimal;
    padding-left: 2rem;
}

.references-list li {
    margin-bottom: 0.5rem;
}

.references-list a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.map-placeholder {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.contact-info-extra ul {
    padding-left: 2rem;
}

.contact-faq {
    margin-top: 3rem;
}

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.thanks-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--success-green);
    color: white;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
}

.thanks-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.thanks-details {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
}

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

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
}

.services-detailed {
    margin: 3rem 0;
}

.service-detail {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: flex-start;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-image,
.service-info {
    flex: 1;
}

.service-image {
    background: var(--light-gray);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.service-info h2 {
    margin-top: 0;
}

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin: 1rem 0 1.5rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-info ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.cta-service {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cta-service:hover {
    background: #2980b9;
}

.service-process {
    background: var(--light-gray);
    padding: 3rem 2rem;
    margin: 4rem -2rem;
    border-radius: 8px;
}

.service-process h2 {
    text-align: center;
    margin-top: 0;
}

.process-steps {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.process-step h3 {
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.process-step p {
    font-size: 0.9rem;
    margin: 0;
}

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

.legal-content ul li {
    margin-bottom: 0.5rem;
}

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

.cookies-table th,
.cookies-table td {
    border: 1px solid var(--medium-gray);
    padding: 0.75rem;
    text-align: left;
}

.cookies-table th {
    background: var(--light-gray);
    font-weight: bold;
}

.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 2rem 1rem 2rem;
    margin-top: 4rem;
}

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

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

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

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

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

.footer-section a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

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

    .nav-links {
        gap: 1rem;
    }

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

    .visual-split,
    .service-detail {
        flex-direction: column;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

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

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

    .cta-section {
        margin-left: 0;
        margin-right: 0;
    }
}