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

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

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: #4a5568;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2d3748;
}

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

.hero-editorial {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    background-color: #e8e8e8;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-text-overlay h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-subtitle {
    font-size: 19px;
    font-weight: 300;
    margin-top: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    opacity: 0.95;
}

.content-flow {
    padding: 0 30px 80px;
}

.reading-column {
    max-width: 680px;
    margin: 0 auto;
}

.intro-text {
    font-size: 21px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 40px;
    font-weight: 400;
}

.reading-column h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 50px 0 25px;
    line-height: 1.4;
}

.reading-column h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 30px 0 15px;
}

.reading-column p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.inline-image {
    margin: 50px 0;
    background-color: #f5f5f5;
}

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

.image-caption {
    padding: 15px 20px;
    font-size: 14px;
    color: #718096;
    font-style: italic;
    background-color: #f5f5f5;
    margin: 0;
}

.citation {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.citation:hover {
    text-decoration: underline;
}

.story-highlight {
    background-color: #f0f4f8;
    border-left: 4px solid #4299e1;
    padding: 30px 35px;
    margin: 40px 0;
}

.highlight-text {
    font-size: 20px;
    line-height: 1.7;
    color: #2d3748;
    font-style: italic;
    margin-bottom: 15px;
}

.highlight-author {
    font-size: 15px;
    color: #718096;
    font-weight: 500;
}

.content-card {
    background-color: #fafafa;
    border: 1px solid #e2e8f0;
    padding: 30px;
    margin: 25px 0;
}

.content-card h3 {
    margin-top: 0;
    color: #1a202c;
}

.cta-inline {
    text-align: center;
    margin: 50px 0;
}

.cta-link {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #1a252f;
}

.service-item {
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    padding: 35px;
    margin: 30px 0;
}

.service-content h3 {
    font-size: 24px;
    color: #1a202c;
    margin-bottom: 15px;
}

.service-content p {
    margin-bottom: 12px;
}

.service-details {
    font-size: 15px;
    color: #718096;
    font-style: italic;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 0;
}

.service-select {
    background-color: #4299e1;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.service-select:hover {
    background-color: #3182ce;
}

.form-section {
    background-color: #f7fafc;
    border: 2px solid #4299e1;
    padding: 40px;
    margin: 50px 0;
}

.form-section h2 {
    margin-top: 0;
    color: #1a202c;
}

.selected-service-display {
    font-size: 18px;
    color: #2d3748;
    margin-bottom: 25px;
    padding: 15px;
    background-color: #edf2f7;
    border-left: 4px solid #4299e1;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-family: inherit;
}

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

.submit-button {
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    padding: 16px 45px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #1a252f;
}

.testimonial-block {
    background-color: #fffaf0;
    border-left: 4px solid #ed8936;
    padding: 30px 35px;
    margin: 40px 0;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #2d3748;
    font-style: italic;
    margin-bottom: 12px;
}

.testimonial-author {
    font-size: 15px;
    color: #718096;
    font-weight: 500;
}

.disclaimer-section {
    background-color: #fef5e7;
    border: 1px solid #f0b429;
    padding: 30px;
    margin: 50px 0;
}

.disclaimer-section h3 {
    color: #744210;
    margin-top: 0;
    margin-bottom: 15px;
}

.disclaimer-section p {
    font-size: 14px;
    color: #744210;
    line-height: 1.7;
}

.references-section {
    background-color: #f7fafc;
    padding: 30px;
    margin: 40px 0;
}

.references-section h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #1a202c;
}

.references-list {
    list-style-position: inside;
    padding-left: 0;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.references-list a {
    color: #2563eb;
    text-decoration: none;
}

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

.main-footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 60px 30px 30px;
}

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

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

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #cbd5e0;
}

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

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

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
    text-align: center;
    color: #a0aec0;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 -4px 12px 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;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #90cdf4;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #48bb78;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #38a169;
}

.cookie-btn.reject {
    background-color: #4a5568;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #2d3748;
}

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

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-text-overlay h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .reading-column {
        padding: 0 15px;
    }

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

    .reading-column h2 {
        font-size: 26px;
    }

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

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

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

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