/* General Page Styling */
body {
    background-color: #FFF8DC;
    color: #333;
    font-family: "Trebuchet MS", Verdana, Geneva, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0 20px;
}

/* Header + Title Image */
header {
    text-align: center;
    padding: 20px 0;
    background-color: #FF0000;
    color: white;
}

header img {
    max-width: 100%;
    height: auto;
    border: 3px solid #1E90FF;
    box-shadow: 3px 3px 5px rgba(0,0,0,0.3);
}

/* Navigation Bar */
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 10px 0;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #FFD700;
}

/* Main Content + Headings */
h2, h3, h4 {
    color: #FF0000;
    font-weight: bold;
}

/* Highlight class for important tips */
.highlight {
    background-color: #FFD700;
    padding: 3px 6px;
    border-radius: 5px;
}

/* Example ID selector (intro paragraph) */
#intro {
    font-size: 1.1em;
    background-color: #FFFACD;
    padding: 10px;
    border-left: 4px solid #FF0000;
}

/*
   Tables-- */
table {
    border-collapse: collapse;
    width: 100%;
    margin: 15px 0;
}

th, td {
    border: 2px solid #1E90FF;
    padding: 8px;
    text-align: center;
}

th {
    background-color: #FF0000;
    color: white;
}

td {
    background-color: #FFFACD;
}

tbody tr:hover {
    background-color: #FFE4B5;
}

/*
   Figures and Images-- */
figure {
    text-align: center;
    margin: 20px 0;
}

figcaption {
    font-style: italic;
    margin-top: 5px;
}

/*
   Links-- */
a {
    color: #1E90FF;
}

a:hover {
    color: #FF4500;
}

/*
   Footer-- */
footer {
    text-align: center;
    padding: 15px 0;
    background-color: #FF0000;
    color: white;
    margin-top: 30px;
}
