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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

/* Ad Notice */
.ad-notice {
    background-color: #f0f0f0;
    color: #666;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-bottom: 1px solid #e0e0e0;
}

/* Navigation */
.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 18px;
    font-weight: bold;
    color: #1a1a1a;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #1a1a1a;
}

/* Editorial Content - Article-like Structure */
.editorial-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.article-header {
    margin-bottom: 48px;
    text-align: center;
}

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

.intro-text {
    font-size: 20px;
    line-height: 1.6;
    color: #5a5a5a;
    font-style: italic;
}

/* Hero and Inline Images */
.hero-image {
    margin: 48px 0;
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.content-image-inline {
    margin: 40px 0;
    width: 100%;
}

.content-image-inline img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* Content Blocks */
.content-block {
    margin-bottom: 48px;
}

.content-block h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 600;
}

.content-block h3 {
    font-size: 24px;
    line-height: 1.4;
    margin: 36px 0 18px;
    color: #2a2a2a;
    font-weight: 600;
}

.content-block h4 {
    font-size: 20px;
    line-height: 1.4;
    margin: 28px 0 14px;
    color: #2a2a2a;
    font-weight: 600;
}

.content-block p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #3a3a3a;
}

/* Editorial Lists */
.editorial-list {
    margin: 24px 0 24px 32px;
    font-size: 19px;
    line-height: 1.8;
}

.editorial-list li {
    margin-bottom: 12px;
    color: #3a3a3a;
}

/* Inline CTA - Text Links */
.inline-cta {
    margin: 32px 0;
    padding: 20px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.text-link {
    color: #0066cc;
    text-decoration: none;
    border-bottom: 1px solid #0066cc;
    transition: border-color 0.2s;
}

.text-link:hover {
    border-bottom-color: transparent;
}

/* Testimonials Inline */
.testimonial-inline {
    margin: 48px 0;
    padding: 32px;
    background-color: #f7f7f7;
    border-left: 4px solid #d0d0d0;
}

.testimonial-inline blockquote {
    font-style: italic;
}

.testimonial-inline p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.testimonial-inline cite {
    font-size: 16px;
    color: #6a6a6a;
    font-style: normal;
}

/* Services Section */
.services-reveal {
    margin: 64px 0;
    padding-top: 48px;
    border-top: 2px solid #e0e0e0;
}

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

.service-card {
    background-color: #ffffff;
    padding: 32px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}

.service-card h4 {
    font-size: 22px;
    margin: 0 0 16px 0;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-card p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.service-card .price {
    font-size: 26px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-select-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.2s;
}

.service-select-btn:hover {
    background-color: #333333;
}

/* Services Detail Page */
.services-detail {
    margin-top: 48px;
}

.service-detail-card {
    background-color: #ffffff;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}

.service-detail-card h3 {
    font-size: 28px;
    margin: 0 0 12px 0;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-duration {
    font-size: 15px;
    color: #6a6a6a;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.price-display {
    font-size: 32px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 28px 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Contact Info */
.contact-info-block {
    margin: 32px 0;
    padding: 24px 0;
    border-bottom: 1px solid #e5e5e5;
}

.contact-info-block:last-of-type {
    border-bottom: none;
}

.contact-info-block h3 {
    font-size: 18px;
    margin: 0 0 12px 0;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.contact-info-block p {
    font-size: 17px;
    line-height: 1.6;
    color: #4a4a4a;
}

/* FAQ Items */
.faq-item {
    margin: 32px 0;
    padding-bottom: 32px;
    border-bottom: 1px solid #e5e5e5;
}

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

.faq-item h4 {
    font-size: 20px;
    margin: 0 0 12px 0;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #4a4a4a;
}

/* Forms */
.form-section {
    margin: 64px 0;
    padding: 48px 40px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

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

.form-section > p {
    font-size: 17px;
    margin-bottom: 32px;
    color: #5a5a5a;
}

.contact-form {
    max-width: 480px;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    margin-bottom: 8px;
    color: #2a2a2a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a1a1a;
}

.submit-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.2s;
}

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

/* Disclaimer */
.disclaimer {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid #e5e5e5;
}

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

/* Legal Pages */
.legal-page h2 {
    margin-top: 48px;
}

.legal-page h3 {
    margin-top: 32px;
}

.cookie-table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
    font-size: 16px;
}

.cookie-table td {
    padding: 12px;
    border: 1px solid #e5e5e5;
    color: #4a4a4a;
}

.cookie-table td:first-child {
    width: 30%;
    background-color: #f9f9f9;
}

/* Footer */
.main-footer {
    background-color: #2a2a2a;
    color: #d0d0d0;
    padding: 60px 24px 32px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-content {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 40px;
}

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

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

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

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

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

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

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

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

.footer-bottom p {
    font-size: 13px;
    color: #909090;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    display: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

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

.cookie-btn {
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-btn.accept {
    background-color: #ffffff;
    color: #1a1a1a;
}

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

.cookie-btn:hover {
    opacity: 0.9;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 14px;
    }

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

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

    .content-block h2 {
        font-size: 26px;
    }

    .content-block h3 {
        font-size: 21px;
    }

    .content-block p {
        font-size: 17px;
    }

    .editorial-list {
        font-size: 17px;
        margin-left: 24px;
    }

    .testimonial-inline {
        padding: 24px 20px;
    }

    .testimonial-inline p {
        font-size: 18px;
    }

    .service-card,
    .service-detail-card {
        padding: 24px;
    }

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

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }

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

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

    .article-header h1 {
        font-size: 28px;
    }

    .intro-text {
        font-size: 16px;
    }

    .editorial-content {
        padding: 40px 20px 60px;
    }
}