/* General Page Styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f0f8ff; /* light ocean color */
    color: #333;
}

/* Header */
header {
    background-color: #0077b6;
    color: white;
    padding: 20px 0;
    text-align: center;
}

/* Sections */
section {
    padding: 20px;
    margin: 20px auto;
    width: 80%;
    border-radius: 8px;
}

/* Danger Section */
section.danger {
    background-color: #ffe6e6; /* light red for danger */
    border: 2px solid #3916c5;
}

/* Safety Section */
section.safety {
    background-color: #e6f7ff; /* light blue for calm info */
    border: 2px solid #3399ff;
}

/* Celebration Section */
section.celebration {
    background-color: #fff9e6; /* light yellow for celebration */
    border: 2px solid #ffcc00;
}

/* Footer */
footer {
    background-color: #0077b6;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
}
