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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSu-n5v-cXFeMAhnML6Q3x6phVcNP4TMQtyjg&s) no-repeat center center fixed; 
    background-size: cover; /* Ensures the image covers the whole page */
    color: black;
    height: 100%; /* Ensures the body takes up the full height of the page */
    display: flex;
    flex-direction: column;
}

/* Ensuring content spans the entire height */
html, body {
    height: 100%;
}

a {
    text-decoration: none;
    color: #009688;
}

/* Header Styles */
header {
    background-color: #0B2F9F;
    color: white;
    padding: 1rem 0;
    text-align: center;
}

header .logo h1 {
    font-size: 2.5rem;
    margin: 0;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

header nav ul li {
    display: inline;
    margin: 0 1rem;
}

header nav ul li a {
    font-size: 1rem;
    color: white;
    padding: 0.5rem 1rem;
    background-color: #009688;
    border-radius: 5px;
}

header nav ul li a:hover {
    background-color: #777;
}

/* About Section Styles */
.about-section {
    padding: 4rem 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.7); /* Light background for text visibility */
    border-radius: 10px;
    margin: 2rem auto;
    max-width: 1200px;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.about-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.about-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-card ul {
    list-style: none;
    padding: 0;
}

.about-card ul li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Call-to-Action Button */
.cta {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #0B2F9F;
    color: white;
    border-radius: 10px;
}

.cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta button {
    padding: 0.8rem 1.5rem;
    font-size: 1.2rem;
    background-color: #0B2F9F;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cta button a {
    color: white;
    text-decoration: none;
}

.cta button:hover {
    background-color: #777;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 2rem 0;
    background-color: #0B2F9F;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}
