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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #ddd;
    --max-content-width: 720px;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 9999;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
    text-align: center;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #229954;
}

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

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

.site-header {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.brand {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    background-color: #f0f0f0;
    padding: 4px 12px;
    border-radius: 3px;
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.nav-menu a {
    color: var(--text-color);
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.editorial-main {
    padding: 40px 20px;
}

.story-content {
    max-width: var(--max-content-width);
    margin: 0 auto;
}

.hero-story {
    margin-bottom: 50px;
}

.hero-story h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--primary-color);
}

.hero-image {
    margin: 30px 0;
}

.hero-image img {
    border-radius: 4px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.inline-section {
    margin: 50px 0;
}

.inline-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.inline-section p {
    margin-bottom: 20px;
}

.inline-section img {
    margin: 30px 0;
    border-radius: 4px;
}

.inline-cta {
    margin: 30px 0;
}

.text-link {
    color: var(--secondary-color);
    font-size: 20px;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: var(--accent-color);
}

.image-text-block {
    margin: 60px 0;
}

.image-text-block img {
    margin-bottom: 25px;
    border-radius: 4px;
}

.text-aside h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.text-aside p {
    margin-bottom: 18px;
}

.centered-message {
    margin: 60px 0;
    text-align: center;
    padding: 40px 20px;
    background-color: var(--light-bg);
    border-radius: 4px;
}

.centered-message h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.centered-message p {
    font-size: 20px;
    line-height: 1.6;
}

.centered-message ul {
    list-style: none;
    margin-top: 20px;
}

.centered-message li {
    margin: 10px 0;
    font-size: 18px;
}

.testimonial-inline {
    margin: 50px 0;
    padding: 30px;
    background-color: #f9f9f9;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-inline blockquote {
    font-style: italic;
    font-size: 20px;
    line-height: 1.6;
}

.testimonial-inline cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-size: 16px;
    color: #666;
}

.services-intro {
    margin: 50px 0;
}

.services-intro h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-intro img {
    margin: 25px 0;
    border-radius: 4px;
}

.services-selection {
    margin: 50px 0;
}

.service-card {
    margin: 30px 0;
    padding: 30px;
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
}

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

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    margin-bottom: 15px;
    font-size: 17px;
}

.service-benefits {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.service-benefits li {
    margin: 8px 0;
    font-size: 16px;
}

.service-price {
    font-size: 28px;
    font-weight: bold;
    color: var(--accent-color);
    margin: 20px 0;
}

.btn-select {
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-select.selected {
    background-color: #27ae60;
}

.form-section {
    margin: 60px 0;
    padding: 40px;
    background-color: var(--light-bg);
    border-radius: 4px;
}

.form-section h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.consultation-form {
    margin-top: 30px;
}

.selected-service-display {
    margin-bottom: 25px;
    padding: 15px;
    background-color: #e8f5e9;
    border-radius: 4px;
    display: none;
}

.selected-service-display.show {
    display: block;
}

.selected-service-display p {
    margin: 0;
    font-size: 16px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: bold;
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-submit:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.trust-section {
    margin: 60px 0;
}

.trust-section h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.trust-section img {
    margin: 25px 0;
    border-radius: 4px;
}

.trust-section blockquote {
    margin-top: 25px;
    padding: 25px;
    background-color: #f9f9f9;
    border-left: 4px solid var(--secondary-color);
    font-style: italic;
    font-size: 19px;
}

.trust-section cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-size: 15px;
    color: #666;
}

.closing-message {
    margin: 60px 0;
    text-align: center;
}

.closing-message h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.closing-message p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-block {
    margin: 30px 0;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #c0392b;
}

.disclaimer-section {
    margin: 60px 0;
    padding: 25px;
    background-color: #fef9e7;
    border: 1px solid #f9e79f;
    border-radius: 4px;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.site-footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 50px 20px 20px;
    margin-top: 80px;
}

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

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

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

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

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

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

.footer-section a {
    color: #ecf0f1;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

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

.contact-info {
    margin: 50px 0;
}

.contact-block {
    margin: 35px 0;
}

.contact-block h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 18px;
    line-height: 1.6;
}

.contact-note {
    font-size: 15px;
    color: #666;
    font-style: italic;
}

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

.thanks-image {
    margin: 30px auto;
    max-width: 600px;
}

.thanks-confirmation {
    text-align: center;
    padding: 30px;
    background-color: #e8f5e9;
    border-radius: 4px;
}

.preparation-list {
    list-style: disc;
    margin-left: 25px;
    margin-top: 20px;
    text-align: left;
}

.preparation-list li {
    margin: 12px 0;
    font-size: 18px;
}

.faq-item {
    margin: 30px 0;
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.legal-page .legal-content {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.legal-content p {
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0;
    margin-left: 25px;
}

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

.legal-note {
    margin-top: 40px;
    font-style: italic;
    color: #666;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .hero-story h1 {
        font-size: 52px;
    }

    .editorial-main {
        padding: 60px 20px;
    }
}

@media (min-width: 1024px) {
    .hero-story h1 {
        font-size: 58px;
    }
}