* {
    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 #e8e8e8;
    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: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

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

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

.ad-notice {
    font-size: 0.8rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #e8e8e8;
}

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

.article-header {
    margin-bottom: 3rem;
}

.article-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.lead-text {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.6;
    font-weight: 400;
}

.text-block {
    margin-bottom: 2.5rem;
}

.text-block h2 {
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
    margin-top: 2.5rem;
    color: #1a1a1a;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.text-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #2c3e50;
    font-weight: 600;
}

.text-block p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #3a3a3a;
}

.text-block ul,
.text-block ol {
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
}

.text-block li {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
    color: #3a3a3a;
}

.text-block em {
    font-style: italic;
    color: #2c3e50;
}

.inline-image,
.inline-image-small {
    margin: 3rem 0;
}

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

.inline-image-small {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.inline-image-small img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.insight-card {
    background-color: #f8f9fa;
    padding: 2.5rem;
    margin: 3rem 0;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.insight-card h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.insight-card p {
    font-size: 1.05rem;
    color: #3a3a3a;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.insight-card ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.insight-card li {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
    color: #3a3a3a;
}

.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.testimonial-inline blockquote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: normal;
}

.cta-inline {
    margin: 4rem 0;
    padding: 3rem 2.5rem;
    background-color: #3498db;
    border-radius: 6px;
    text-align: center;
}

.cta-inline h2 {
    font-size: 1.9rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-inline p {
    font-size: 1.1rem;
    color: #ecf0f1;
    margin-bottom: 1.5rem;
}

.cta-link {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #ffffff;
    color: #3498db;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.1s ease;
    margin: 0.5rem;
}

.cta-link:hover {
    background-color: #ecf0f1;
    transform: translateY(-1px);
}

.service-card {
    margin-bottom: 3rem;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    overflow: hidden;
    background-color: #ffffff;
}

.service-image {
    width: 100%;
    background-color: #f8f9fa;
}

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

.service-content {
    padding: 2rem;
}

.service-content h2 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #3a3a3a;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #3498db;
    margin-top: 1.5rem;
    margin-bottom: 1.2rem;
}

.btn-select-service {
    padding: 0.9rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-select-service:hover {
    background-color: #2980b9;
    transform: translateY(-1px);
}

.form-section {
    margin-top: 4rem;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

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

.contact-form {
    margin-top: 2rem;
}

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

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

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

.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 {
    padding: 1rem 2.5rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-1px);
}

.btn-submit:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

.contact-info-section {
    display: flex;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 280px;
}

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

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

.contact-item p {
    font-size: 1.05rem;
    color: #3a3a3a;
    line-height: 1.6;
}

.contact-image {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    border-radius: 6px;
    overflow: hidden;
}

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

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

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

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

.legal-page ul {
    margin-left: 1.5rem;
}

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

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

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

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    font-size: 0.95rem;
    color: #3a3a3a;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

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

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

.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 li {
    margin-bottom: 0.6rem;
}

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

.footer-column a:hover {
    color: #3498db;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

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

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

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

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #229954;
    transform: translateY(-1px);
}

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

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

.thanks-page .article-header {
    text-align: center;
}

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

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

    .article-header h1 {
        font-size: 2.2rem;
    }

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

    .editorial-content {
        padding: 0 1.5rem;
    }

    .contact-info-section {
        flex-direction: column;
    }

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

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

    .service-card {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }
}