/* 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;
    overflow-x: hidden;
}

/* Ad Notice */
.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 40px;
    right: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-brand {
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 12px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, transform 0.2s ease;
    padding: 5px 0;
}

.nav-links a:hover {
    color: #3498db;
    transform: translateX(5px);
}

/* Editorial Container */
.editorial-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 40px 30px 80px;
}

/* Article Hero */
.article-hero {
    margin-bottom: 60px;
}

.article-hero.small {
    margin-bottom: 40px;
}

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ecf0f1;
}

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

.article-title-block {
    padding: 0 20px;
}

.article-title-block h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 700;
    color: #1a252f;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.article-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #555;
    font-weight: 400;
}

/* Article Content */
.article-content {
    padding: 0 20px;
}

/* Text Blocks */
.text-block {
    margin-bottom: 50px;
}

.text-block h2 {
    font-size: 1.75rem;
    line-height: 1.4;
    font-weight: 700;
    color: #1a252f;
    margin: 50px 0 25px;
}

.text-block h3 {
    font-size: 1.35rem;
    line-height: 1.5;
    font-weight: 600;
    color: #2c3e50;
    margin: 35px 0 18px;
}

.text-block p {
    margin-bottom: 22px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #34495e;
}

.lead-paragraph {
    font-size: 1.3rem;
    line-height: 1.7;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 30px;
}

.text-block ul,
.text-block ol {
    margin: 25px 0 25px 30px;
}

.text-block li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
}

.text-block ul li {
    list-style-type: disc;
}

.text-block ol li {
    list-style-type: decimal;
}

/* Inline Images */
.inline-image-wrapper {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ecf0f1;
}

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

/* Inline CTA */
.inline-cta {
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 25px 30px;
    margin: 40px 0;
    border-radius: 0 8px 8px 0;
}

.inline-cta p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2c3e50;
}

.inline-cta a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.inline-cta a:hover {
    border-bottom-color: #3498db;
}

/* Testimonial Block */
.testimonial-block {
    margin: 50px 0;
    padding: 40px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.testimonial-block blockquote {
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
    color: #2c3e50;
    padding: 0 30px;
}

.testimonial-block cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 0.95rem;
    color: #7f8c8d;
}

/* Services Preview */
.services-preview {
    margin: 60px 0;
    padding: 50px 0;
    border-top: 2px solid #e9ecef;
}

.services-preview h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.services-preview > p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 40px;
}

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

.service-card {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.service-card .price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.select-service-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    width: 100%;
}

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

/* Services Detailed Page */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 40px;
}

.service-detail-card {
    border-top: 2px solid #e9ecef;
    padding-top: 40px;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.service-detail-header h2 {
    font-size: 1.85rem;
    color: #1a252f;
    margin: 0;
}

.service-price-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
}

.service-detail-image {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ecf0f1;
}

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

.service-detail-content h3 {
    font-size: 1.35rem;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 22px;
}

.service-detail-content ul {
    margin: 20px 0 30px 30px;
}

.service-detail-content li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
}

/* Form Section */
.form-section {
    margin: 60px 0;
    padding: 50px 40px;
    background: #f8f9fa;
    border-radius: 10px;
}

.form-section h2 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: #1a252f;
}

.form-section > p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 30px;
}

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

.selected-service-display {
    background: white;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    border: 2px solid #3498db;
}

.selected-service-display p {
    margin-bottom: 8px;
    font-size: 1rem;
    color: #2c3e50;
}

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

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

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

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

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

/* Disclaimer Section */
.disclaimer-section {
    margin: 50px 0;
    padding: 30px;
    background: #fff8e1;
    border-left: 4px solid #f39c12;
    border-radius: 0 8px 8px 0;
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Contact Info Blocks */
.contact-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

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

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a252f;
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.contact-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

/* Thanks Page */
.thanks-content {
    padding-top: 60px;
}

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

.thanks-block h1 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #27ae60;
}

.thanks-info-box {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
    margin: 40px 0;
    text-align: left;
}

.thanks-info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-info-box ol {
    margin-left: 25px;
}

.thanks-info-box li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 40px 0;
}

.thanks-link-btn {
    display: block;
    padding: 15px 30px;
    background: #3498db;
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.thanks-link-btn:hover {
    background: #2980b9;
}

.thanks-link-btn.secondary {
    background: #95a5a6;
}

.thanks-link-btn.secondary:hover {
    background: #7f8c8d;
}

.contact-reminder {
    margin-top: 50px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.contact-reminder p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* Legal Content */
.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 45px;
    margin-bottom: 20px;
    color: #1a252f;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content p {
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.8;
    color: #34495e;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content li {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.7;
    color: #34495e;
}

/* Footer */
.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 30px 30px;
    margin-top: 80px;
}

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

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

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

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #bdc3c7;
    margin-bottom: 12px;
}

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

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

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

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    backdrop-filter: blur(10px);
    padding: 25px 30px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ecf0f1;
}

.cookie-content a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.cookie-content a:hover {
    border-bottom-color: #3498db;
}

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

.cookie-btn {
    padding: 12px 25px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

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

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

.cookie-btn.reject {
    background: #95a5a6;
    color: white;
}

.cookie-btn.reject:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-nav {
        position: static;
        margin: 20px;
        padding: 20px;
    }

    .article-title-block h1 {
        font-size: 2rem;
    }

    .article-subtitle {
        font-size: 1.1rem;
    }

    .text-block h2 {
        font-size: 1.5rem;
    }

    .text-block h3 {
        font-size: 1.2rem;
    }

    .editorial-container {
        padding: 30px 20px 60px;
    }

    .article-content {
        padding: 0 10px;
    }

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

    .service-detail-header {
        flex-direction: column;
    }

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

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

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .article-title-block h1 {
        font-size: 1.75rem;
    }

    .floating-nav {
        margin: 15px;
        padding: 15px;
    }

    .thanks-links {
        gap: 12px;
    }
}