

/* Header - Keep existing for navigation */
.header {
    text-align: center;
}

.header h1 {
    font-family: 'ivyjournal', 'Inter', serif;
    font-size: 3.5rem;
    margin-top: 3.5rem;
    font-weight: 600;
    color: #4c4283;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.header .subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.9;
}
h4 {
    font-size: 1.3rem;
    color: #4c4283;
}

/* Main Content - Updated to match original design */
.main-content {
    padding: 1rem 0;
    background: white;
}

.content-section {
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

/* Large headings matching original design */
.content-section h2 {
    font-family: 'ivyjournal', 'Inter', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #4c4283;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* Subheadings */
.content-section h3 {
    font-family: 'ivyjournal', 'Inter', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #4c4283;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* Body text matching original */
.content-section p {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #000000;
    font-weight: 400;
}

/* FAQ Styles - Updated to match original */
.faq-item {
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid #e1e5e9;
}

.faq-question {
    background: #4c4283;
    color: white;
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.faq-question:hover {
    background: #5a518f;
}

.faq-answer {
    padding: 1.5rem;
    display: none;
    background: white;
}

.faq-answer.active {
    display: block;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 1rem;
}

/* Medication Cards - Updated to match original */
.medication-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.medication-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e5e9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.medication-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.medication-card h4 {
    color: #4c4283;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.medication-card p {
    color: #000000;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.7;
}

.medication-card ul {
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.medication-card li {
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

/* Feature list styling to match original */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #e1e5e9;
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #000000;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list strong {
    color: #4c4283;
    font-weight: 600;
}

/* Checkmark list styling */
.checkmark-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.checkmark-list li {
    padding: 0.35rem 0;
    position: relative;
    padding-left: 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    line-height: 1.7;
    color: #000000;
    font-weight: 400;
}

.checkmark-list li::before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 0.75rem;
    font-size: 1rem;
}

    .checkmark li {
        list-style: inside;
        padding: 0.35rem 0;
        position: relative;
        padding-left: 2rem;
        font-family: 'Inter', sans-serif;
        font-size: 1.5rem;
        line-height: 1.7;
        color: #000000;
        font-weight: 400;
    }
/* Process steps styling */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e1e5e9;
}

.process-step h4 {
    color: #667eea;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.process-step p {
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

/* CTA Section - Keep existing */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-top: 4rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.results-ctas{
    place-self: center;
    margin-bottom: 4rem;
}
/* Responsive Design */
@media (max-width: 768px) {
    .checkmark-list li {
        font-size: 1rem;
    }
    .content-section {
        padding: 0 0.5rem;
    }
    .container {
        padding: 0 15px;
    }
    
    .header h1 {
        font-size: 2rem;
        margin-top: 25px;
        margin-bottom: 15px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .content-section h2 {
        font-size: 1.7rem;
        justify-self: center;
        text-align: center;
    }
    
    .content-section h3 {
        font-size: 1.7rem;
        justify-self: center;
        text-align: center;
    }
    
    .medication-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    .content-section p {
        font-size: 1rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.highlight {
    color: #667eea;
    font-weight: 600;
} 