* {
    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.6;
    color: #2c3e50;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    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;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

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

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

.hero-content-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    text-align: center;
}

.hero-content-narrow h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-lead {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.8;
}

.hero-image-full {
    width: 100%;
    margin: 0;
}

.hero-image-full img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

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

.story-section,
.problem-section,
.solution-section,
.trust-section,
.form-section,
.disclaimer-section,
.services-detail-section {
    margin-bottom: 3rem;
}

.content-narrow h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.content-narrow h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.content-narrow p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.inline-image-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin-bottom: 1rem;
}

.caption {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
    text-align: center;
}

.inline-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    margin: 2rem 0;
    transition: all 0.3s ease;
}

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

.insight-box {
    background: #ecf0f1;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #3498db;
}

.insight-box h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-cards-editorial {
    margin: 3rem 0;
}

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

.service-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.service-card h3 {
    font-size: 1.75rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
}

.service-card p {
    margin: 0 1.5rem 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

.service-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1rem 1.5rem;
}

.btn-select {
    display: block;
    width: calc(100% - 3rem);
    margin: 1.5rem;
    padding: 1rem;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #34495e;
    transform: translateY(-2px);
}

.testimonial {
    background: #f8f9fa;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #27ae60;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1rem;
}

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

.order-form {
    background: #f8f9fa;
    padding: 2rem;
    margin: 2rem 0;
}

.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.75rem;
    border: 1px solid #bdc3c7;
    font-size: 1rem;
    font-family: inherit;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.6;
    padding: 1.5rem;
    background: #f8f9fa;
    border-left: 3px solid #e74c3c;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
    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-section h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

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

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.page-header {
    background: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-detail {
    margin-bottom: 4rem;
}

.service-detail img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 2rem;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1rem 0;
}

.service-detail ul {
    margin: 2rem 0;
    padding-left: 2rem;
}

.service-detail ul li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

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

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

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-note {
    background: #ecf0f1;
    padding: 1.5rem;
    margin: 2rem 0;
}

.contact-note a {
    color: #3498db;
    text-decoration: none;
}

.contact-note a:hover {
    text-decoration: underline;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-content .lead {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
}

.thanks-info {
    background: #f8f9fa;
    padding: 2rem;
    margin: 2rem 0;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #3498db;
    color: #ffffff;
}

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

.btn-secondary {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background: #3498db;
    color: #ffffff;
}

.legal-page {
    background: #ffffff;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-section h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    color: #34495e;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-section a {
    color: #3498db;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

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

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

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

    .intro-lead {
        font-size: 1rem;
    }

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

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

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

    .thanks-actions {
        flex-direction: column;
    }

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