/* Purdue University Theme Colors: Gold (#CFB87C) and Dark Gray/Black (#2D2A26) */

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333; /* Dark text */
    margin: 0;
    padding: 0;
    background-color: #f8f8f8; /* Light off-white background */
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Header & Title */
header {
    background: #2D2A26; /* Dark Purdue Gray/Black */
    color: #FFFFFF;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #CFB87C 5px solid; /* Purdue Gold accent line */
    text-align: center;
}

header h1 {
    color: #CFB87C; /* Purdue Gold for the name */
    font-size: 2.2em;
    margin: 0;
    padding-bottom: 5px;
}

header p {
    margin: 0 0 10px 0;
    font-size: 1.1em;
}

/* Navigation */
nav {
    background: #FFFFFF; /* White background for navigation */
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

nav a {
    color: #2D2A26; /* Dark text */
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    padding: 0 15px;
    transition: color 0.3s;
}

nav a:hover, nav a:active, nav a:focus {
    color: #CFB87C; /* Gold hover color */
}

/* Section Content */
section {
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* Headings within content sections */
section h2 {
    color: #2D2A26; /* Dark headings */
    border-bottom: 3px solid #CFB87C; /* Gold underline for main section title */
    padding-bottom: 5px;
    font-size: 1.8em;
}

section h3 {
    color: #2D2A26;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    font-size: 1.4em;
    margin-top: 25px;
}

/* Lists and Links */
ul, ol {
    padding-left: 25px;
}

ul li, ol li {
    margin-bottom: 10px;
}

a {
    color: #000000; /* Default link color dark */
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #CFB87C; /* Gold hover for content links */
    text-decoration: underline;
}

/* Specific elements for index page */
.contact-info {
    margin-top: 20px;
}
.contact-info strong {
    color: #2D2A26;
    display: inline-block;
    width: 100px;
}