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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #4CAF50;
    color: white;
}

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

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.main-nav {
    background-color: #ffffff;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #666;
}

.editorial-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.article-hero {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-style: italic;
    line-height: 1.5;
}

.story-intro {
    margin-bottom: 3rem;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-body {
    margin-bottom: 3rem;
}

.story-body h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.story-body h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    margin-top: 2rem;
    color: #1a1a1a;
    font-weight: 500;
}

.story-body p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.inline-image {
    margin: 3rem 0;
}

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

.inline-cta {
    background-color: #f5f5f5;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #1a1a1a;
}

.inline-cta p {
    margin: 0;
    font-size: 1.1rem;
}

.text-link {
    color: #1a1a1a;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #666;
}

.cta-button {
    display: inline-block;
    background-color: #1a1a1a;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #333;
}

.insight-block {
    margin: 4rem 0;
    padding: 2rem 0;
}

.insight-quote {
    border-left: 4px solid #1a1a1a;
    padding-left: 2rem;
    font-size: 1.5rem;
    font-style: italic;
    color: #1a1a1a;
    line-height: 1.6;
}

.insight-quote p {
    margin: 0;
}

.problem-amplification {
    background-color: #f9f9f9;
    padding: 3rem 2rem;
    margin: 3rem -2rem;
}

.problem-amplification h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.problem-amplification p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.story-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.story-list li {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.testimonial-block {
    margin: 4rem 0;
    padding: 2rem 0;
}

.testimonial {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.testimonial cite {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

.benefits-reveal {
    margin: 4rem 0;
}

.benefits-reveal h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.benefits-reveal p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.trust-building {
    background-color: #fafafa;
    padding: 3rem 2rem;
    margin: 3rem -2rem;
}

.trust-building h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.trust-building p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.urgency-section {
    margin: 4rem 0;
    padding: 2rem;
    border-top: 2px solid #1a1a1a;
    border-bottom: 2px solid #1a1a1a;
}

.urgency-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.urgency-section p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.service-selection-section {
    margin: 4rem 0;
}

.service-selection-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
}

.section-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
}

.services-editorial {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background-color: #ffffff;
    padding: 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.service-duration {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    line-height: 1.6;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.select-service-btn {
    background-color: #1a1a1a;
    color: white;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s ease;
    width: 100%;
}

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

.form-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: #f9f9f9;
}

.form-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
}

.form-intro {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
}

.enrollment-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    background-color: #1a1a1a;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    width: 100%;
    transition: background-color 0.3s ease;
}

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

.final-cta {
    margin: 4rem 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.final-cta p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #999;
}

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

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .editorial-container {
        padding: 2rem 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .lead-text {
        font-size: 1.2rem;
    }

    .story-body h2 {
        font-size: 1.6rem;
    }

    .problem-amplification,
    .trust-building {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding: 2rem 1.5rem;
    }

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

    .cookie-content {
        font-size: 0.9rem;
    }

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

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}

.service-card.selected {
    border: 2px solid #1a1a1a;
    background-color: #f9f9f9;
}

.contact-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.contact-hero {
    margin-bottom: 3rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #666;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 4px;
}

.contact-info-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-info-card p {
    font-size: 1.1rem;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    color: #1a1a1a;
    text-decoration: underline;
}

.about-page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.about-hero {
    margin-bottom: 3rem;
}

.about-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.about-content {
    margin-bottom: 2rem;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #1a1a1a;
}

.about-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    line-height: 1.7;
}

.services-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.services-hero {
    margin-bottom: 3rem;
    text-align: center;
}

.services-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-hero p {
    font-size: 1.2rem;
    color: #666;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.legal-page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-page-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.legal-page-container h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #1a1a1a;
}

.legal-page-container p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    line-height: 1.7;
}

.legal-page-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-page-container ul li {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    line-height: 1.7;
}

.thanks-service-info {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.thanks-service-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-service-info p {
    font-size: 1.1rem;
    margin: 0;
}