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

.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #5a6c7d;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 0.8rem;
    color: #95a5a6;
    border-left: 1px solid #e1e8ed;
    padding-left: 2rem;
    font-style: italic;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    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);
}

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

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

.hero-image-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #e8eef2;
}

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

.hero-text-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
}

.hero-text-narrow h1 {
    font-size: 2.4rem;
    line-height: 1.25;
    font-weight: 700;
    color: #1a252f;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.lead-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

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

.content-narrow h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 700;
    color: #1a252f;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.content-narrow h2 {
    font-size: 1.6rem;
    line-height: 1.35;
    font-weight: 600;
    color: #2c3e50;
    margin: 3rem 0 1.2rem;
}

.content-narrow h3 {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 600;
    color: #34495e;
    margin: 2rem 0 1rem;
}

.content-narrow p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.content-narrow ul,
.content-narrow ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-narrow li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 0.5rem;
}

.inline-image {
    margin: 3rem 0;
    background-color: #f4f7f9;
}

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

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

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

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #95a5a6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

.btn-text-link {
    color: #3498db;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    border-bottom: 2px solid #3498db;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.btn-text-link:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

.benefits-list {
    margin: 2rem 0 3rem;
}

.benefit-item {
    margin-bottom: 2.5rem;
}

.benefit-item h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.7rem;
}

.benefit-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a6c7d;
}

.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f8fafb;
    border-left: 4px solid #3498db;
    font-style: italic;
    color: #34495e;
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.services-preview {
    background-color: #f9fbfc;
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.consultation-form {
    margin: 2rem 0;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d5dde3;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

.service-details {
    margin-top: 2rem;
    text-align: center;
}

.service-details a {
    color: #3498db;
    text-decoration: none;
    font-size: 1rem;
    border-bottom: 1px solid #3498db;
}

.service-details a:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

.disclaimer-section {
    background-color: #fff9e6;
    padding: 2rem;
    margin: 3rem 0 0 0;
    border-radius: 6px;
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #7f6e3d;
    margin: 0;
    font-style: italic;
}

.service-full {
    margin-bottom: 3rem;
}

.service-image {
    margin-bottom: 1.5rem;
    background-color: #f4f7f9;
}

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

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin: 1rem 0 1.5rem;
}

.contact-info-block {
    margin: 3rem 0;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.7rem;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 0.5rem;
}

.contact-item .note {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 1rem;
}

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

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

.faq-item h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.7rem;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a6c7d;
}

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

.thanks-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.service-confirmation {
    margin: 2rem 0;
}

.service-selected {
    font-size: 1.1rem;
    color: #34495e;
    background-color: #e8f5e9;
    padding: 1rem;
    border-radius: 6px;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.next-steps ol {
    margin-left: 1.5rem;
}

.next-steps li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 0.8rem;
}

.legal-page {
    background-color: #fafbfc;
}

.legal-page h1 {
    border-bottom: 2px solid #e1e8ed;
    padding-bottom: 1rem;
}

.updated-date {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.legal-page h2 {
    margin-top: 2.5rem;
    color: #2c3e50;
    font-size: 1.4rem;
}

.legal-page h3 {
    margin-top: 2rem;
    color: #34495e;
    font-size: 1.15rem;
}

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

.legal-page a:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    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-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #95a5a6;
}

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

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .ad-disclosure {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #e1e8ed;
        padding-top: 0.8rem;
    }

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

    .content-narrow {
        padding: 1.5rem 1.5rem 3rem;
    }

    .content-narrow h1 {
        font-size: 1.8rem;
    }

    .content-narrow h2 {
        font-size: 1.4rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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