/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #f5f5f5;
    line-height: 1.6;
}

/* Header */
header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    padding: 20px 0;
    z-index: 10;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

header .logo img {
    width: 100px;
    height: auto;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #FFD700;  /* Gold color for contrast */
}

/* Hero Section */
.hero {
/*   background: url('hero-image.jpg') no-repeat center center/cover; */
	background-color: #a3cedd;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    max-width: 600px;
    padding: 30px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.hero .btn {
    background-color: #5C6BC0;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.hero .btn:hover {
    background-color: #3f51b5;
}

/* About Section */
.about {
    background-color: #ffffff;  /* White background for clean contrast */
    color: #333;  /* Dark text for readability */
    padding: 80px 0;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: #666;
}

/* Contact Section */
.contact {
    background-color: #333;  /* Dark background for high contrast */
    color: #fff;  /* Light text on dark background */
    padding: 80px 0;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.contact ul {
    list-style: none;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: left;
    color: #fff;
}

.contact ul li {
    margin-bottom: 20px;
}

.contact ul li a {
    color: #FFD700;  /* Gold color for contact links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact ul li a:hover {
    color: #fff;  /* White on hover for high contrast */
}

/* Footer */
footer {
    background-color: #222;  /* Dark footer for contrast */
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

footer p {
    font-size: 1rem;
}
