/* --- KIDS PAGE SPECIFIC STYLINGS --- */
.kids-page {
    font-family: 'Nunito', sans-serif;
    color: #333;
}

.kids-section {
    margin-bottom: 50px;
}

.kids-section h2 {
    color: #b00020;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kids-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Quiz Styles */
.quiz-question {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.quiz-option {
    padding: 12px 15px;
    margin-top: 10px;
    border: 1px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
}

.quiz-option:hover {
    background: #fdf2f2;
    border-color: #b00020;
}

/* Activity Boxes */
.activity-box {
    background: #ffffff;
    border-left: 5px solid #ffeb3b;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.activity-box h3 {
    color: #f57f17;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.activity-box ul {
    list-style: none;
    padding-left: 0;
}

.activity-box li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.activity-box li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

/* Prayer Box */
.prayer-box {
    border: 2px solid #b00020;
    border-radius: 15px;
    padding: 30px;
    background: #fffafa;
    text-align: center;
}