/* Basic Reset & Body Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Navigation */
header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    position: sticky; /* Makes nav stick to top */
    top: 0;
    z-index: 10; /* Ensures nav stays on top */
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center; /* Center navigation items */
    padding: 0 2rem; /* Add some padding on the sides */
}

nav ul li {
    margin: 0 15px;
}

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

nav ul li a:hover,
nav ul li a.active { /* Style for the current page link */
    background-color: #555;
    border-radius: 4px;
}

/* Main Content Area */
main {
    max-width: 1100px; /* Limit content width */
    margin: 2rem auto; /* Center content and add top/bottom margin */
    padding: 0 2rem; /* Padding on the sides */
}

/* Hero Section (Homepage) */
.hero {
    display: flex;
    align-items: center;
    gap: 2rem; /* Space between text and image */
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.hero-text {
    flex: 1; /* Allow text to take available space */
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.hero-text .subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-image {
    flex-basis: 300px; /* Suggest a width for the image container */
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Optional: round the corners */
    border: 1px solid #ddd;
}

/* Call to Action Buttons */
.cta-buttons {
    margin-top: 1.5rem;
}

.btn {
    display: inline-block;
    background-color: #007bff; /* Example blue */
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-right: 10px; /* Space between buttons */
}

.btn:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: #6c757d; /* Example grey */
}

.btn-secondary:hover {
    background-color: #5a6268;
}


/* Highlights Section */
.highlights {
    background-color: #e9ecef;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.highlights h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #495057;
}

.highlight-items {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
}

.highlight-items a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}
.highlight-items a:hover {
    text-decoration: underline;
}


/* Footer */
footer {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: #e0e0e0;
    color: #555;
    font-size: 0.9rem;
}


/* Basic Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        flex-direction: column; /* Stack text and image vertically */
        text-align: center;
    }

    .hero-image {
        flex-basis: auto; /* Reset basis */
        margin-top: 1rem;
        max-width: 250px; /* Control image size on mobile */
    }

    nav ul {
        flex-direction: column; /* Stack nav items vertically */
        align-items: center;
    }

    nav ul li {
        margin: 5px 0;
    }
}