/* In-Home Euthanasia Page Styles */

.eol-container {
    max-width: 800px;
}

.eol-section {
    background: #fff;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.eol-intro h1 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 0.25rem;
}

.eol-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--brand-brown);
    margin-bottom: 1.5rem;
}

.eol-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--widget-yellow);
}

.eol-section h3 {
    font-family: 'Playfair Display', serif;
    color: var(--brand-brown);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.eol-section h4 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Pricing Table */
.eol-pricing-table {
    margin-bottom: 1.25rem;
}

.eol-pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    gap: 1rem;
}

.eol-pricing-row:last-child {
    border-bottom: none;
}

.eol-pricing-label {
    flex: 1;
}

.eol-pricing-label small {
    display: block;
    color: #777;
    margin-top: 0.25rem;
    font-size: 0.85rem;
}

.eol-pricing-amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--brand-brown);
    white-space: nowrap;
}

.eol-note {
    background-color: var(--brand-cream);
    border-left: 4px solid var(--widget-yellow);
    padding: 1rem 1.25rem;
    border-radius: 0 8px 8px 0;
    margin-bottom: 1rem;
}

.eol-note p {
    margin-bottom: 0.25rem;
}

.eol-note p:last-child {
    margin-bottom: 0;
}

/* Callout Box */
.eol-callout {
    background-color: var(--brand-cream);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.eol-callout h3 {
    margin-top: 0;
}

/* Benefit & Prep Cards */
.eol-benefit-card,
.eol-prep-card {
    background-color: var(--brand-cream);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.eol-benefit-card:hover,
.eol-prep-card:hover {
    transform: translateY(-3px);
}

.eol-benefit-card i,
.eol-prep-card i {
    font-size: 2rem;
    color: var(--brand-brown);
    margin-bottom: 0.75rem;
    display: block;
}

.eol-benefit-card p,
.eol-prep-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #555;
}

/* Timeline */
.eol-timeline {
    position: relative;
    padding-left: 3rem;
    margin: 1.5rem 0;
}

.eol-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--widget-yellow);
}

.eol-timeline-step {
    position: relative;
    margin-bottom: 1.75rem;
}

.eol-timeline-step:last-child {
    margin-bottom: 0;
}

.eol-step-number {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--brand-brown);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 1;
}

.eol-step-content h4 {
    margin-bottom: 0.25rem;
}

.eol-step-content p {
    margin-bottom: 0;
    color: #555;
}

/* After list */
.eol-after-list li {
    margin-bottom: 1rem;
}

/* Emphasis text */
.eol-emphasis {
    font-weight: 700;
    color: var(--brand-brown);
    font-size: 1.05rem;
}

.eol-emphasis-italic {
    font-style: italic;
    color: var(--brand-brown);
}

/* Resource list */
.eol-resource-list {
    list-style: none;
    padding-left: 0;
}

.eol-resource-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.eol-resource-list li:last-child {
    border-bottom: none;
}

/* Contact Cards */
.eol-contact-card {
    background-color: var(--brand-cream);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}

.eol-contact-card i {
    font-size: 1.75rem;
    color: var(--brand-brown);
    margin-bottom: 0.5rem;
    display: block;
}

.eol-contact-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.eol-contact-card a {
    font-weight: 700;
    font-size: 1.05rem;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .eol-section {
        padding: 1.5rem 1.25rem;
    }

    .eol-intro h1 {
        font-size: 2rem;
    }

    .eol-pricing-row {
        flex-direction: column;
        gap: 0.25rem;
    }

    .eol-pricing-amount {
        font-size: 1.15rem;
    }

    .eol-timeline {
        padding-left: 2.5rem;
    }

    .eol-timeline::before {
        left: 12px;
    }

    .eol-step-number {
        left: -2.5rem;
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
    }
}
