/* Reset and Base Styles */
body, h1, h2, h3, p, ul, li, form, input, textarea, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #fafafa;
    padding: 20px;
}

a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: #003d7a;
}

/* Navigation Styles */
nav {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 0 20px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #333;
    padding: 10px 15px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}

nav ul li a:hover, nav ul li a:focus {
    background-color: #f2f2f2;
}

/* Hero Section Styles */
.hero {
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 80%;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

.hero p {
    font-size: 1.2em;
    max-width: 600px;
    margin: auto;
}

/* Call to Action Button */
.cta-button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056a3;
}

/* Section Styles */
.section {
    background-color: rgba(255, 255, 255, 0.8);
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-width: 80%;
    position: relative;
    z-index: 1;
}

.section h2 {
    font-weight: bold;
    font-size: 1.5em;
    margin-bottom: 1em;
}

.section p strong {
    font-weight: bold;
    color: #007bff;
    font-size: 1.1em;
    margin-right: 0.5em;
}

/* Responsive Design Adjustments */
@media (max-width: 768px) {
    .section {
        max-width: 95%;
    }
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
