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

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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
    font-family: 'Arial', sans-serif;
}

.main-nav {
    background-color: #ffffff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: #5f4b8b;
    letter-spacing: 1px;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #5f4b8b;
}

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 20px;
}

.story-header {
    margin-bottom: 60px;
}

.hero-image-container {
    width: 100%;
    margin-bottom: 40px;
    background-color: #e8dff5;
    border-radius: 4px;
    overflow: hidden;
}

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

.header-text h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.story-intro,
.problem-amplification,
.solution-reveal,
.trust-building,
.benefits-section,
.services-pricing-reveal,
.form-section,
.disclaimer-section,
.scientific-references {
    margin-bottom: 50px;
}

.editorial-content p {
    margin-bottom: 20px;
    font-size: 18px;
}

.editorial-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 600;
}

.inline-image-wrapper {
    margin: 40px 0;
    background-color: #f5f0fa;
    padding: 10px;
    border-radius: 4px;
}

.inline-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 3px;
    object-fit: cover;
}

.image-caption {
    margin-top: 15px;
    font-size: 15px;
    color: #666;
    font-style: italic;
    text-align: center;
}

.insight-quote {
    background-color: #f9f7fc;
    border-left: 4px solid #5f4b8b;
    padding: 25px 30px;
    margin: 35px 0;
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.insight-quote a {
    color: #5f4b8b;
    text-decoration: none;
    font-weight: 600;
}

.insight-quote a:hover {
    text-decoration: underline;
}

.composition-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.composition-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 4px;
    border: 1px solid #e1d5f0;
}

.composition-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #5f4b8b;
}

.composition-item p {
    font-size: 16px;
    margin-bottom: 0;
}

.composition-item a {
    color: #5f4b8b;
    text-decoration: none;
}

.composition-item a:hover {
    text-decoration: underline;
}

.testimonial-inline {
    background-color: #fefcff;
    padding: 25px 30px;
    margin: 25px 0;
    border-left: 3px solid #d4c5e8;
    font-size: 17px;
}

.testimonial-inline p {
    margin-bottom: 10px;
    font-style: italic;
    color: #333;
}

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

.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    padding-left: 30px;
    margin-bottom: 18px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5f4b8b;
    font-weight: bold;
    font-size: 20px;
}

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

.service-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 6px;
    border: 2px solid #e8dff5;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(95, 75, 139, 0.15);
}

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

.service-card p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
}

.service-price {
    font-size: 28px;
    font-weight: bold;
    color: #5f4b8b;
    margin: 20px 0;
}

.select-service-btn {
    background-color: #5f4b8b;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    font-family: 'Arial', sans-serif;
}

.select-service-btn:hover {
    background-color: #4a3a6f;
    transform: scale(1.02);
}

.select-service-btn:active {
    transform: scale(0.98);
}

.hidden {
    display: none;
}

#form-container {
    background-color: #f9f7fc;
    padding: 40px;
    border-radius: 6px;
    margin-top: 30px;
}

.selected-service-display {
    background-color: #e8dff5;
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 25px;
    font-size: 16px;
}

.story-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    margin-bottom: 8px;
    color: #333;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #d4c5e8;
    border-radius: 4px;
    font-family: 'Georgia', serif;
    background-color: #ffffff;
}

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

.submit-btn {
    background-color: #5f4b8b;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    font-family: 'Arial', sans-serif;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #4a3a6f;
    transform: scale(1.02);
}

.submit-btn:active {
    transform: scale(0.98);
}

.disclaimer-section {
    background-color: #fff9e6;
    padding: 25px 30px;
    border-radius: 4px;
    border: 1px solid #f0e5c1;
}

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

.scientific-references {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 4px;
}

.scientific-references h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.references-list {
    padding-left: 20px;
}

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

.references-list a {
    color: #5f4b8b;
    text-decoration: none;
}

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

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 40px 20px;
    margin-top: 80px;
}

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

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

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

.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    font-size: 13px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
}

.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;
    font-size: 14px;
    margin-bottom: 0;
}

.cookie-content a {
    color: #5f4b8b;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s, transform 0.2s;
}

.cookie-btn:hover {
    transform: scale(1.05);
}

.cookie-btn:active {
    transform: scale(0.95);
}

.cookie-btn.accept {
    background-color: #5f4b8b;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #4a3a6f;
}

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

.cookie-btn.reject:hover {
    background-color: #7f8c8d;
}

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

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

    .editorial-content {
        padding: 20px 15px;
    }

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

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

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

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

.contact-page-container,
.about-page-container,
.services-page-container,
.legal-page-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px 20px;
}

.page-header {
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.page-intro {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-info-section,
.about-content-section,
.services-list-section {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 6px;
    margin-bottom: 30px;
    border: 1px solid #e8dff5;
}

.contact-info-section h2,
.about-content-section h2,
.services-list-section h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #5f4b8b;
}

.info-item {
    margin-bottom: 20px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #333;
}

.info-item p {
    font-size: 16px;
    color: #555;
    margin-bottom: 5px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-item {
    background-color: #f9f7fc;
    padding: 25px;
    border-radius: 6px;
    border-left: 4px solid #5f4b8b;
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-item p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #555;
}

.service-item .price-tag {
    font-size: 24px;
    font-weight: bold;
    color: #5f4b8b;
}

.legal-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 6px;
    border: 1px solid #e1e1e1;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #333;
}

.legal-content p,
.legal-content ul {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.legal-content ul {
    padding-left: 25px;
}

.legal-content li {
    margin-bottom: 8px;
}

.thanks-container {
    max-width: 700px;
    margin: 80px auto;
    padding: 60px 40px;
    background-color: #f9f7fc;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #e8dff5;
}

.thanks-icon {
    font-size: 72px;
    margin-bottom: 20px;
}

.thanks-container h1 {
    font-size: 36px;
    color: #5f4b8b;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.thanks-details {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 6px;
    margin: 30px 0;
    border: 1px solid #d4c5e8;
}

.thanks-details p {
    font-size: 16px;
    margin-bottom: 8px;
}

.back-home-btn {
    display: inline-block;
    background-color: #5f4b8b;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 20px;
}

.back-home-btn:hover {
    background-color: #4a3a6f;
    transform: scale(1.05);
}

.back-home-btn:active {
    transform: scale(0.95);
}