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

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.floating-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

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

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

.nav-links a:hover {
    color: #4a90e2;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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: 20px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #4a90e2;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #357abd;
}

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.editorial-layout {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
    border-radius: 12px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #ffffff;
    padding: 60px 40px 40px;
}

.hero-editorial h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.page-header {
    margin-bottom: 50px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.content-flow {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.text-block {
    line-height: 1.8;
}

.lead-paragraph {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 25px;
}

.text-block p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.text-block h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
}

.text-block h3 {
    font-size: 1.4rem;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
}

.inline-image {
    margin: 40px 0;
}

.inline-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #f8f9fa;
}

.inline-image figcaption {
    margin-top: 12px;
    font-size: 0.95rem;
    color: #6c757d;
    font-style: italic;
    text-align: center;
}

.insight-block {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px 40px;
    border-radius: 12px;
    color: #ffffff;
    margin: 50px 0;
}

.insight-content h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.phase-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.phase-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.phase-item strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.phase-item p {
    opacity: 0.9;
    line-height: 1.6;
}

.highlight-section {
    background-color: #f8f9fa;
    padding: 50px 40px;
    border-radius: 12px;
    margin: 50px 0;
}

.services-embed {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-card.featured {
    border: 3px solid #4a90e2;
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #4a90e2;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-card p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #4a90e2;
    margin: 20px 0;
}

.btn-select {
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-select:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

.form-section {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 50px 0;
}

.form-container h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 35px;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 10px;
}

.btn-submit:hover {
    background-color: #357abd;
}

.btn-cancel {
    background-color: transparent;
    color: #6c757d;
    border: 2px solid #dee2e6;
    padding: 14px 40px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-cancel:hover {
    background-color: #f8f9fa;
    border-color: #6c757d;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.testimonial {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 15px;
}

.testimonial cite {
    font-style: normal;
    color: #6c757d;
    font-weight: 600;
}

.cta-block {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
    margin: 50px 0;
}

.cta-block h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-block p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #4a90e2;
    padding: 14px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #ffffff;
    padding: 14px 40px;
    border: 2px solid #ffffff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #4a90e2;
}

.disclaimer-section {
    background-color: #f8f9fa;
    padding: 30px 40px;
    margin: 60px 20px 0;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer-section p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.references-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.references-section h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.references-list {
    list-style-position: inside;
    line-height: 1.8;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.references-list a {
    color: #4a90e2;
    text-decoration: none;
}

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

.site-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 40px 20px;
    margin-top: 80px;
}

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

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

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

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

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

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.service-card-full {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.featured-service {
    border: 3px solid #4a90e2;
}

.badge-large {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #4a90e2;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    z-index: 10;
}

.service-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.service-header h2 {
    font-size: 1.8rem;
    margin: 0;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
}

.service-body {
    padding: 40px;
}

.service-body p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-benefits {
    list-style-position: inside;
    margin: 20px 0;
    line-height: 1.8;
}

.service-benefits li {
    margin-bottom: 10px;
    color: #555;
}

.service-ideal {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    font-style: italic;
}

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

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

.contact-block h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-address {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.contact-email {
    font-size: 1.2rem;
    color: #4a90e2;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-note {
    font-size: 0.95rem;
    color: #6c757d;
    font-style: italic;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
}

.day {
    font-weight: 600;
    color: #2c3e50;
}

.time {
    color: #555;
}

.thanks-container {
    text-align: center;
    padding: 60px 20px;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.thanks-message {
    max-width: 700px;
    margin: 0 auto;
}

.selected-service-display {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.next-steps {
    margin: 40px 0;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-number {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 8px;
}

.step-content p {
    color: #555;
    line-height: 1.6;
}

.thanks-note {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: left;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.legal-page .legal-date {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    margin-top: 10px;
}

.legal-content {
    max-width: 900px;
}

.legal-list {
    list-style-position: inside;
    margin: 15px 0;
    line-height: 1.8;
}

.legal-list li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .floating-nav {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 15px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-overlay {
        padding: 40px 25px 25px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

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

    .insight-block {
        padding: 30px 25px;
    }

    .highlight-section {
        padding: 30px 25px;
    }

    .service-card {
        padding: 25px;
    }

    .form-section {
        padding: 30px 20px;
    }

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
    }

    .service-body {
        padding: 30px;
    }

    .thanks-container {
        padding: 40px 20px;
    }

    .thanks-container h1 {
        font-size: 2rem;
    }

    .step-item {
        flex-direction: column;
        gap: 15px;
    }

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

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