/* Typography consistency fixes for pricing.html */

/* Make all section headings consistent with site typography */
.guide-section h3 {
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

/* Fix photo guide list styling */
.photo-tips-list {
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    padding-left: 1.2rem;
}

.photo-tips-list li {
    margin-bottom: 10px;
}

.photo-tips-list li:last-child {
    margin-bottom: 0;
}

/* Fix dropdown option items */
.option-item h3 {
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
}

/* Fix process step content for consistency */
.process-step-content h4 {
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-transform: none;
}

/* Consistent paragraph styling */
.process-step-content p,
.option-details p,
.info-footnote {
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Info category consistent with other headings */
.info-category h4 {
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    font-size: 1.4rem;
    font-weight: 500; /* Changed from 600 to match other headings */
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

/* Detail label and value consistency */
.detail-label, .detail-value {
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

.detail-label {
    font-weight: 500;
    color: var(--primary-color);
}

.detail-value {
    font-weight: 400;
    color: var(--text-secondary);
}