/* General Body and Font Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e0ffff; /* Light aqua background */
    color: #333;
}

/* Header Styles */
header {
    background-color: #40e0d0; /* Turquoise/Aqua */
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .logo h1 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

header nav a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

header nav a:hover {
    color: #afeeee; /* Lighter aqua on hover */
}

/* Main Content Styles */
main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh; /* Adjust height to center content vertically */
    text-align: center;
}

/* Hero Section */
.hero-section {
    background-color: #7fffd4; /* Aquamarine */
    color: #008080; /* Teal for contrast */
    padding: 4rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 2rem;
}

.hero-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00ced1; /* Darker turquoise */
}

.hero-section p {
    font-size: 1.2rem;
    line-height: 1.5;
}

.hero-section p a {
    color: #008080; /* Teal for link */
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.hero-section p a:hover {
    color: #20b2aa; /* Lighter teal on hover */
}

/* Footer Styles */
footer {
    background-color: #40e0d0; /* Same as header */
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #afeeee;
}