/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Accessibility Improvements - Focus Styles */
:focus {
    outline: 3px solid #00A1E0; /* Blue outline for focusable elements */
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none; /* Remove focus outline for mouse users */
}

button:focus, input:focus, a:focus {
    border-color: #00A1E0; /* Add focus style for buttons, inputs, and links */
}

/* General Body */
body {
    font-family: 'Arial', sans-serif;
    background-color: #000000; /* Black background */
    color: #F0F0F0; /* White primary text */
    line-height: 1.6;
}

/* Global Centered Container */
.container {
    max-width: 1200px; /* Limit content width */
    margin: 0 auto; /* Center content horizontally */
    padding: 0 20px; /* Add horizontal padding for smaller screens */
}

/* Header Styles */
header {
    background-color: #222;
    padding: 10px 0;
}

/* Navigation */
nav ul {
    list-style-type: none;
    text-align: center;
}

nav ul li {
    display: inline-block; /* Ensure buttons are inline and shrink */
    margin: 0 10px; /* Reduced space between items */
}

nav ul li a {
    color: #F0F0F0;
    text-decoration: none;
    font-size: 16px; /* Adjusted font size for smaller screens */
}

/* Hover and Focus for Navigation Links */
nav ul li a:hover,
nav ul li a:focus {
    text-decoration: underline;
    color: #00A1E0; /* Accent color for focus and hover */
}

/* Hero Section */
.hero {
    background-color: #2e3d52;
    color: white;
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 60vh;
}

/* Responsive Adjustments for smaller screens */
@media (max-width: 768px) {
    .hero {
        height: 60vh; /* Reduced height for mobile */
        padding: 20px 10px; /* Adjust padding for mobile */
    }
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    justify-content: center;
    align-items: center;
    max-width: 100%;
    flex-shrink: 0;
}

.hero-logo img {
    width: auto;
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* About Section */
.about {
    text-align: center;
    padding: 40px 20px;
    background-color: #1e1e1e;
    transition: min-height 0.3s ease-out;
    min-height: 300px;
}

.about .container {
    text-align: center;
}

.about h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #00A1E0; /* Accent color */
}

.about h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #00A1E0; /* Accent color */
}

.about p {
    font-size: 16px;
    margin-bottom: 20px;
}

.about ul {
    list-style-type: none;
    margin-top: 20px;
}

.about ul li {
    font-size: 16px;
    margin: 10px 0;
}

/* Call to Action */
.cta {
    background-color: #2e3d52;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.cta .container {
    text-align: center;
}

.cta h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cta p {
    font-size: 16px;
    margin-bottom: 15px;
}

.cta-button {
    font-size: 16px;
    padding: 10px 20px;
    color: white;
    background-color: #004085; /* Darker blue for better contrast */
    text-decoration: none;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #003366; /* Even darker blue for hover effect */
}

/* Footer Section */
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

footer .container {
    text-align: center;
}

footer p {
    margin-bottom: 10px;
    font-size: 14px;
}
