/* Custom CSS for Why Wonder page */
.why-wonder-content {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.why-wonder-content p {
    margin-bottom: 20px;
}

.why-wonder-content .lead {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.why-wonder-content .highlight {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b6b;
    margin: 30px 0;
}

.scripture {
    font-family: 'Caveat', cursive;
    font-size: 28px;
    line-height: 1.4;
    padding: 20px 40px;
    margin: 30px 0;
    border-left: 5px solid #ff6b6b;
    background-color: #f9f9f9;
    color: #333;
}

.wonder-examples {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.wonder-examples p {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
}

.wonder-examples p:before {
    content: "★";
    position: absolute;
    left: 0;
    color: #ff6b6b;
}

.call-to-action {
    background-color: #f9f7f2;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    border: 1px dashed #ddd;
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
    justify-content: center;
}

@media (max-width: 768px) {
    .why-wonder-content {
        font-size: 16px;
    }
    
    .why-wonder-content .lead {
        font-size: 20px;
    }
    
    .why-wonder-content .highlight {
        font-size: 22px;
    }
    
    .scripture {
        font-size: 24px;
        padding: 15px 25px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons .ul-button {
        width: 100%;
        margin-bottom: 10px;
    }
}
