/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #fff;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #012D5A;
}

.navbar .logo {
    font-size: 24px;
    color: #fff;
    font-weight: bold;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar .nav-links li a {
    padding: 10px 20px;
    
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.navbar .nav-links li a:hover {
    background-color: #ccc;
    border-radius: 20px;
    color: black;
}

/* Hero Section */
.hero {
    background: url('wellnessBanner.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #444542;
    text-align: center;
}


.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-btn {
    padding: 15px 30px;
    background-color: #012D5A;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #112e4b;
}

/* Programs Section */
#programs {
    padding: 60px 20px;
    background-color: #fff;
}

#programs h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #012D5A;
}

.programs-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.program-card {
    background-color: #e0f2f1;
    padding: 20px;
    border-radius: 8px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.program-card:hover {
    transform: translateY(-10px);
}

.program-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
    color: #012D5A;
}

/* About Section */
#about {
    padding: 60px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

#about h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #012D5A;
}

#about p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}

/* Contact Section */
#contact {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

#contact h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #012D5A;
}

#contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#contact-form input,
#contact-form textarea {
    padding: 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

#contact-form button {
    padding: 15px;
    background-color: #012D5A;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#contact-form button:hover {
    background-color: #113960;
}

/* Footer */
footer {
    padding: 20px;
    background-color: #a8aaab;
    color: #fff;
    text-align: center;
}
