/*1. Page Layout & Base Typography*/
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f7f9fc; /* Soft, light background color */
    color: #2c3e50;            /* Dark slate gray text for easier reading */
    max-width: 650px;          /* Centers and wraps the layout beautifully */
    margin: 40px auto;         /* Balanced outer screen padding */
    padding: 20px;
}

/*2. Headings & Typography Hierarchy*/
h1 {
    font-size: 2.2rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 25px;
}

/*Applies matching cleaner font scales to all subheadings */
h2, h3, h4, h5, h6 {
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 10px;
    border-bottom: 2px solid #e2e8f0; /* Underline divider under topics */
    padding-bottom: 5px;
}

/* Customizing specific header scales down the page hierarchy */
h2 { font-size: 1.6rem; border-color: #ffcc00; } /* Sun-yellow accent line */
h3 { font-size: 1.4rem; border-color: #3498db; } /* Ocean-blue accent line */
h4 { font-size: 1.3rem; border-color: #2ecc71; } /* Emerald-green accent line */
h5 { font-size: 1.2rem; border-color: #9b59b6; } /* Amethyst-purple accent line */
h6 { font-size: 1.1rem; border-color: #e67e22; } /* Tangerine-orange accent line */

/* Formatting inline tag variations (superscripts, subscripts, underlines) */
sup { color: #e74c3c; font-weight: bold; }
sub { color: #7f8c8d; font-size: 0.75rem; }
del { color: #95a5a6; }
u { text-decoration-color: #e67e22; font-weight: 500; }

/*3. The Sunshine Quote Banner*/
blockquote {
    background-color: #ffffff;
    border-left: 5px solid #ffcc00; /* Warm sunshine theme anchor stripe */
    margin: 30px 0;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.1); /* Subtle bright glow */
    font-style: italic;
    font-size: 1.1rem;
}

/*4. Lists, Nested Elements & Indentation*/
ul, ol {
    padding-left: 25px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 6px;
    font-size: 1.05rem;
}

/* Target elements sitting strictly inside nested, secondary lists */
ul ul {
    list-style-type: circle; /* Clean hollow circle for the animal sub-items */
    margin-top: 5px;
    margin-bottom: 5px;
    padding-left: 20px;
}

ul ul li {
    font-size: 0.95rem;
    color: #555555; /* Soften text slightly for structural depth */
}
