* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.ad-disclosure {
    background: #f8d7da;
    color: #721c24;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-bottom: 1px solid #f5c6cb;
}

.minimal-nav {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
}

.article-hero {
    margin-bottom: 60px;
}

.hero-image {
    width: 100%;
    height: 480px;
    overflow: hidden;
}

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

.hero-text {
    padding: 50px 30px 30px;
    text-align: center;
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-text .lead {
    font-size: 20px;
    color: #555;
    font-style: italic;
}

.story-intro,
.content-section,
.services-reveal,
.form-section,
.testimonial-section,
.closing-section,
.disclaimer-section {
    padding: 0 30px 40px;
}

.story-intro p,
.content-section p,
.services-reveal > p,
.closing-section p {
    font-size: 18px;
    margin-bottom: 25px;
    text-align: justify;
}

.content-section h2,
.services-reveal h2,
.form-section h2,
.testimonial-section h2,
.closing-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    margin-top: 50px;
    font-weight: 600;
}

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

.text-cta {
    color: #e74c3c;
    font-size: 17px;
    text-decoration: none;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.2s;
}

.text-cta:hover {
    color: #c0392b;
}

.content-image {
    width: 100%;
    height: 400px;
    margin: 40px 0;
    overflow: hidden;
}

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

.principle-block {
    background: #ecf0f1;
    padding: 25px;
    margin: 25px 0;
    border-left: 4px solid #3498db;
}

.principle-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.principle-block p {
    font-size: 17px;
    margin: 0;
    line-height: 1.6;
}

.service-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 30px;
    margin: 30px 0;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.service-card p {
    font-size: 16px;
    margin-bottom: 15px;
    text-align: left;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.select-service-btn {
    background: #3498db;
    color: #fff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background 0.2s;
    width: 100%;
}

.select-service-btn:hover {
    background: #2980b9;
}

.form-section {
    background: #f8f9fa;
    padding: 40px 30px;
    margin: 50px 0;
}

.form-section h2 {
    margin-top: 0;
}

.form-intro {
    font-size: 16px;
    margin-bottom: 30px;
    color: #555;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.submit-btn {
    background: #27ae60;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: #229954;
}

.testimonial-section {
    background: #34495e;
    color: #ecf0f1;
    padding: 50px 30px;
    margin: 60px 0;
}

.testimonial-section h2 {
    color: #fff;
    margin-top: 0;
}

.testimonial-section blockquote {
    margin: 30px 0;
    padding-left: 20px;
    border-left: 3px solid #3498db;
}

.testimonial-section blockquote p {
    font-size: 19px;
    font-style: italic;
    margin-bottom: 10px;
    color: #ecf0f1;
}

.testimonial-section cite {
    font-size: 15px;
    color: #bdc3c7;
    font-style: normal;
}

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

.cta-link {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 18px 45px;
    text-decoration: none;
    font-size: 18px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background 0.2s;
}

.cta-link:hover {
    background: #c0392b;
}

.disclaimer-section {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 25px 30px;
    margin: 40px 0 0;
}

.disclaimer {
    font-size: 14px;
    color: #856404;
    line-height: 1.6;
    margin: 0;
}

.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 50px 30px 20px;
}

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

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

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

.footer-section p,
.footer-section ul {
    font-size: 14px;
    line-height: 1.8;
    color: #bdc3c7;
}

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    color: #fff;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

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

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

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

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

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

.thanks-message {
    text-align: center;
    padding: 80px 30px;
}

.thanks-message h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-message p {
    font-size: 18px;
    margin-bottom: 15px;
}

.thanks-message .selected-service {
    font-weight: 600;
    color: #2c3e50;
}

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

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

    .content-section h2,
    .services-reveal h2 {
        font-size: 26px;
    }

    .footer-content {
        flex-direction: column;
    }

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