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

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

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    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;
    line-height: 1.5;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-accept {
    background-color: #b794f6;
    color: #ffffff;
}

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

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

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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #b794f6;
    letter-spacing: -0.5px;
}

.nav-main {
    display: flex;
    gap: 28px;
}

.nav-main a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-main a:hover {
    color: #b794f6;
}

.ad-disclosure {
    font-size: 11px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
}

.editorial-flow {
    padding: 60px 0;
}

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.lead-text {
    font-size: 21px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 48px;
}

.hero-image {
    margin: 48px 0 64px 0;
    background-color: #e8e8e8;
}

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

.content-block {
    margin-bottom: 56px;
}

.content-block h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.content-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

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

.cta-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: #b794f6;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.cta-link:hover {
    background-color: #9f7ae8;
}

.visual-break {
    margin: 64px 0;
    background-color: #f0f0f0;
}

.visual-break img {
    width: 100%;
    height: auto;
    display: block;
}

.visual-break figcaption {
    padding: 16px;
    font-size: 14px;
    font-style: italic;
    color: #666666;
    text-align: center;
}

.reading-levels {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.level-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.testimonial-inline {
    margin: 56px 0;
    padding: 40px;
    background-color: #f8f6fc;
    border-left: 4px solid #b794f6;
}

.testimonial-inline blockquote {
    font-style: italic;
}

.testimonial-inline p {
    font-size: 19px;
    line-height: 1.7;
    color: #2c2c2c;
    margin-bottom: 16px;
}

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

.inline-image-left {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin: 40px 0;
    flex-wrap: wrap;
}

.inline-image-left img {
    flex: 0 0 280px;
    width: 280px;
    height: auto;
    background-color: #e8e8e8;
}

.text-beside {
    flex: 1;
    min-width: 300px;
}

.text-beside p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.services-section {
    margin: 80px 0;
}

.services-intro {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 48px;
}

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 32px;
    border-radius: 6px;
    transition: box-shadow 0.2s ease;
}

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

.service-card img {
    width: 100%;
    height: auto;
    margin-bottom: 24px;
    border-radius: 4px;
    background-color: #f0f0f0;
}

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

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #b794f6;
    margin-bottom: 20px;
}

.btn-select {
    padding: 12px 28px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-select:hover {
    background-color: #1a1a1a;
}

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

.form-section {
    margin: 80px 0;
    padding: 48px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.form-section > p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.selected-service-display {
    padding: 16px;
    background-color: #f8f6fc;
    border-left: 3px solid #b794f6;
    margin-bottom: 32px;
    display: none;
}

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

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    font-size: 15px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

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

.btn-submit {
    padding: 14px 32px;
    background-color: #b794f6;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    align-self: flex-start;
}

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

.disclaimer-section {
    margin: 60px 0 40px 0;
    padding: 32px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.7;
    color: #666666;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 48px 0;
    margin-top: 80px;
}

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

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-nav a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

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

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-info p {
    font-size: 14px;
    color: #b0b0b0;
}

.email-display {
    color: #d0d0d0;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
}

.thanks-page h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.thanks-page p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 16px;
    max-width: 600px;
}

.thanks-page .btn-home {
    margin-top: 32px;
    padding: 14px 32px;
    background-color: #b794f6;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
    transition: background-color 0.2s ease;
}

.thanks-page .btn-home:hover {
    background-color: #9f7ae8;
}

.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #3a3a3a;
}

.legal-page ul {
    margin: 16px 0 16px 24px;
    list-style-type: disc;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #3a3a3a;
}

.contact-page {
    padding: 60px 0;
}

.contact-page h1 {
    font-size: 40px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.contact-info {
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 40px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.info-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.info-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

@media (max-width: 768px) {
    .hero-editorial h1 {
        font-size: 32px;
    }

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

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

    .inline-image-left {
        flex-direction: column;
    }

    .inline-image-left img {
        flex: 1;
        width: 100%;
    }

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

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

    .form-section {
        padding: 32px 24px;
    }
}