/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

/* Container Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

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

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

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

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

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

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

/* Header */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.navigation {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

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

.navigation a:hover {
    color: #3498db;
}

.ad-notice {
    background-color: #f8f9fa;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #6c757d;
    border: 1px solid #e9ecef;
}

/* Editorial Main Layout */
.editorial-main {
    background-color: #ffffff;
}

.editorial-content {
    padding: 0;
}

/* Hero Editorial */
.hero-editorial {
    padding: 60px 0 40px;
    background-color: #f8f9fa;
}

.hero-editorial h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 800;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.inline-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Content Sections */
.content-section,
.insight-section,
.problem-section,
.trust-section,
.services-reveal,
.form-section,
.benefits-section,
.final-cta-section,
.disclaimer-section {
    padding: 50px 0;
}

.content-section {
    background-color: #ffffff;
}

.insight-section {
    background-color: #f8f9fa;
}

.problem-section {
    background-color: #ffffff;
}

.trust-section {
    background-color: #f8f9fa;
}

.services-reveal {
    background-color: #ffffff;
}

.form-section {
    background-color: #f8f9fa;
}

.benefits-section {
    background-color: #ffffff;
}

.final-cta-section {
    background-color: #2c3e50;
    color: #ffffff;
}

.final-cta-section h2,
.final-cta-section p {
    color: #ffffff;
}

.disclaimer-section {
    background-color: #fff3cd;
    padding: 40px 0;
}

/* Typography */
h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.insight-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.insight-list li {
    padding: 15px 0 15px 40px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.insight-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Testimonial */
.testimonial-box {
    background-color: #ffffff;
    border-left: 4px solid #3498db;
    padding: 25px 30px;
    margin: 30px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #2c3e50;
}

.testimonial-author {
    font-weight: 600;
    color: #3498db;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Service Cards */
.service-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.service-card {
    background-color: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #3498db;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.15);
}

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

.service-card p {
    color: #4a4a4a;
    margin-bottom: 15px;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
}

.btn-select {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

/* CTA Buttons */
.cta-inline {
    margin: 40px 0;
    text-align: center;
}

.btn-primary,
.btn-large {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-large:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

/* Contact Form */
.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e8e8e8;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 5px;
    cursor: pointer;
}

.checkbox-group a {
    color: #3498db;
    text-decoration: underline;
}

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

/* Benefits Grid */
.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin: 30px 0;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.benefit-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.benefit-item p {
    color: #4a4a4a;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Disclaimer */
.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #856404;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section p {
    font-size: 0.9rem;
    color: #bdc3c7;
    margin-bottom: 0;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

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

/* Services Page */
.services-page {
    background-color: #ffffff;
}

.page-hero {
    background-color: #f8f9fa;
    padding: 60px 0 40px;
}

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

.services-detail {
    padding: 50px 0;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-intro {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    line-height: 1.6;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-pricing-box {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 25px;
}

.price-label {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select-service {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.service-detail-image {
    flex: 0 0 400px;
}

.detail-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.why-choose-section {
    background-color: #f8f9fa;
    padding: 50px 0;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.advantage-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.advantage-item h4 {
    margin-bottom: 10px;
}

.advantage-item p {
    margin-bottom: 0;
    color: #4a4a4a;
}

/* About Page */
.about-page {
    background-color: #ffffff;
}

.story-section {
    padding: 50px 0;
    background-color: #ffffff;
}

.team-approach {
    padding: 50px 0;
    background-color: #f8f9fa;
}

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

.approach-step {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.approach-step h3 {
    color: #3498db;
    margin-bottom: 10px;
}

.approach-step p {
    margin-bottom: 0;
    color: #4a4a4a;
}

.values-section {
    padding: 50px 0;
    background-color: #ffffff;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid #3498db;
}

.value-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.value-card p {
    margin-bottom: 0;
    color: #4a4a4a;
}

.numbers-section {
    padding: 50px 0;
    background-color: #2c3e50;
}

.numbers-section h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

.statistics {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    color: #ecf0f1;
    margin-bottom: 0;
}

.testimonials-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.mission-section {
    padding: 50px 0;
    background-color: #ffffff;
}

.cta-about {
    padding: 50px 0;
    background-color: #f8f9fa;
    text-align: center;
}

/* Contact Page */
.contact-page {
    background-color: #ffffff;
}

.contact-info-section {
    padding: 50px 0;
}

.contact-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

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

.contact-item h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-item p {
    color: #4a4a4a;
    margin-bottom: 10px;
    line-height: 1.7;
}

.email-display {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.email-note,
.hours-note {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 10px;
}

.contact-image-side {
    flex: 0 0 400px;
}

.contact-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.info-box {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.info-box h4 {
    margin-bottom: 15px;
}

.info-box p {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.btn-secondary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.location-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.directions {
    margin-top: 30px;
}

.directions h3 {
    margin-top: 25px;
    margin-bottom: 15px;
}

.faq-contact {
    padding: 50px 0;
    background-color: #ffffff;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.faq-item p {
    color: #4a4a4a;
    margin-bottom: 0;
}

.faq-item a {
    color: #3498db;
    text-decoration: underline;
}

.action-section {
    padding: 50px 0;
    background-color: #f8f9fa;
    text-align: center;
}

/* Thanks Page */
.thanks-page {
    background-color: #ffffff;
}

.thanks-hero {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
}

.thanks-hero h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.confirmation-details {
    padding: 50px 0;
}

.confirmation-box {
    background-color: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
}

.next-steps {
    margin-top: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    flex: 0 0 50px;
    height: 50px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    margin-bottom: 8px;
}

.step-content p {
    margin-bottom: 0;
    color: #4a4a4a;
}

.selected-service-info {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.selected-service-info h3 {
    margin-bottom: 10px;
}

.meanwhile-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.preparation-tips {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
}

.tip-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tip-card h4 {
    margin-bottom: 12px;
    color: #2c3e50;
}

.tip-card p {
    margin-bottom: 0;
    color: #4a4a4a;
    font-size: 0.95rem;
}

.additional-info {
    padding: 50px 0;
    background-color: #ffffff;
}

.info-links {
    display: flex;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.info-link-card {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-link-card:hover {
    border-color: #3498db;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.15);
}

.info-link-card h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.info-link-card p {
    color: #4a4a4a;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-reminder {
    padding: 50px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.email-display-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 0;
}

.reminder-note {
    font-size: 0.95rem;
    color: #6c757d;
}

/* Legal Pages */
.legal-page {
    background-color: #ffffff;
    padding: 50px 0;
}

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

.last-updated {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
    margin-top: 30px;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2c3e50;
    margin-top: 20px;
}

.legal-section h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #2c3e50;
    margin-top: 15px;
}

.legal-section p {
    color: #4a4a4a;
    line-height: 1.8;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-section ul li {
    margin-bottom: 8px;
    line-height: 1.7;
    color: #4a4a4a;
}

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

.legal-section a:hover {
    color: #2980b9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .navigation {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .ad-notice {
        width: 100%;
        text-align: center;
    }

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

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

    h2 {
        font-size: 1.6rem;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .service-detail-image {
        flex: 1;
        width: 100%;
    }

    .contact-layout {
        flex-direction: column;
    }

    .contact-image-side {
        flex: 1;
        width: 100%;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .benefits-grid,
    .values-grid,
    .preparation-tips,
    .info-links {
        flex-direction: column;
    }

    .benefit-item,
    .value-card,
    .tip-card,
    .info-link-card {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-editorial h1 {
        font-size: 1.75rem;
    }

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

    h2 {
        font-size: 1.4rem;
    }

    .service-price,
    .price-amount {
        font-size: 1.5rem;
    }

    .btn-primary,
    .btn-large {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .stat-number {
        font-size: 2rem;
    }
}