/* Basic Reset & Body Styles */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f8f8f8; /* Light grey background */
    color: #333; /* Dark grey text */
}

/* Container for centered content */
.container {
    max-width: 960px;
    margin: 20px auto;
    padding: 0 20px;
    background-color: #fff; /* White content background */
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 5px;
}

/* Header Styles */
header {
    background-color: #6a0dad; /* Purple inspired color */
    color: #fff;
    padding: 10px 0;
    border-bottom: 5px solid #ff69b4; /* Pink inspired border */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent; /* Header container shouldn't have white bg */
    box-shadow: none;
    border-radius: 0;
    max-width: 1100px; /* Wider for header */
}

header h1 {
    margin: 0;
    font-size: 1.8em;
}

header h1 a {
    color: #fff;
    text-decoration: none;
}

/* Navigation Styles */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: #ff69b4; /* Pink highlight on hover/active */
}

/* Main Content Styles */
main {
    padding: 30px 0;
}

main h2 {
    color: #6a0dad; /* Purple headings */
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

main h3 {
    color: #444;
    margin-top: 30px;
}

/* Resource Listing Styles */
.resource {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ccc;
}

.resource:last-child {
    border-bottom: none;
}

.resource p {
    margin-bottom: 15px; /* Ensure good spacing between paragraphs */
}

.resource strong {
    display: inline-block;
    min-width: 80px; /* Align labels like Website:, Contact: */
}

/* Links */
a {
    color: #007bff; /* Standard blue link color */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer Styles */
footer {
    text-align: center;
    margin-top: 30px;
    padding: 20px 0;
    background-color: #eee;
    color: #555;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
    }

    nav ul li {
        margin: 5px 0;
        width: 100%;
    }

    nav ul li a {
        display: block;
        text-align: center;
    }

    .container {
        margin: 10px auto;
        padding: 0 15px;
    }
}

/* Illustration Styles */
.illustration {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 5px;
}

