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

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    border-bottom: 1px solid #e9ecef;
}

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

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

.logo {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

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

.story-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.story-header {
    margin-bottom: 48px;
}

.story-header h1 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #6c757d;
    margin-top: 16px;
}

.text-block {
    margin-bottom: 40px;
}

.text-block h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    margin-top: 48px;
    line-height: 1.3;
}

.text-block h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
    margin-top: 32px;
}

.text-block h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    margin-top: 24px;
}

.text-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 20px;
}

.text-block ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.text-block ul li {
    font-size: 18px;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 8px;
}

.inline-image {
    margin: 48px 0;
    width: 100%;
    background-color: #f8f9fa;
}

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

.cta-inline {
    margin: 48px 0;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #2c3e50;
    transition: background-color 0.3s, transform 0.2s;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

.services-preview {
    margin: 60px 0;
    padding: 40px 0;
}

.services-preview h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    text-align: center;
}

.section-intro {
    font-size: 18px;
    color: #6c757d;
    text-align: center;
    margin-bottom: 48px;
}

.service-card {
    background-color: #f8f9fa;
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 8px;
    border-left: 4px solid #2c3e50;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 16px;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 0;
}

.btn-select-service {
    display: inline-block;
    padding: 12px 28px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.form-section {
    margin: 60px 0;
    padding: 48px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.form-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.form-section p {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 32px;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background-color: #ffffff;
}

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

.form-group input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.btn-submit {
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

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

.disclaimer-section {
    margin: 48px 0;
    padding: 32px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 6px;
}

.disclaimer-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: #856404;
    margin-bottom: 12px;
}

.disclaimer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #856404;
}

.site-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 48px 24px 24px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #adb5bd;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #adb5bd;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #dee2e6;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    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: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #495057;
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-accept {
    padding: 10px 24px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-reject {
    padding: 10px 24px;
    background-color: #6c757d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-reject:hover {
    background-color: #5a6268;
}

.services-detailed {
    margin: 48px 0;
}

.service-detail {
    margin-bottom: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid #e9ecef;
}

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

.service-detail h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.service-image {
    margin: 24px 0;
    width: 100%;
    background-color: #f8f9fa;
}

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

.service-detail ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.service-detail ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 8px;
}

.contact-info-section {
    margin: 48px 0;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.contact-block {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
}

.contact-block h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.contact-item {
    margin-bottom: 24px;
}

.contact-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item p {
    font-size: 18px;
    line-height: 1.7;
    color: #2c3e50;
}

.faq-item {
    margin-bottom: 32px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.legal-page .text-block p {
    font-size: 16px;
}

.legal-page .text-block ul li {
    font-size: 16px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

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

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

.cookie-table td {
    font-size: 15px;
    color: #495057;
}

.thanks-page {
    text-align: left;
}

.thanks-content {
    margin-top: 32px;
}

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

    .nav-links {
        gap: 20px;
    }

    .story-header h1 {
        font-size: 32px;
    }

    .lead-text {
        font-size: 18px;
    }

    .text-block h2 {
        font-size: 24px;
    }

    .text-block h3 {
        font-size: 20px;
    }

    .text-block p {
        font-size: 16px;
    }

    .form-section {
        padding: 32px 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

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

    .cta-inline {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}