/* Base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
    padding-left: 0;
}

section {
    padding: 60px 0;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #4e426d;
    color: #fff;
    z-index: 100;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.navbar .logo {
    font-weight: 600;
    font-size: 1.3rem;
}

/* Logo image styling */
.navbar .logo img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #d4c8e5;
}

/* Hero Section */
.hero {
    height: 90vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 650px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #7b5ea7;
    color: #fff;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.btn:hover {
    background-color: #694e8c;
}

.btn.light {
    background-color: #fff;
    color: #4e426d;
}

.btn.light:hover {
    background-color: #e6e6e6;
}

/* Section Headings */
.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #4e426d;
    text-align: center;
}

.section h3 {
    font-size: 1.4rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #4e426d;
}

/* About Section */
.about p {
    margin-bottom: 15px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.values-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.values-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: #7b5ea7;
    border-radius: 50%;
}

/* Programs Section */
.programs {
    background-color: #fff;
}

.program-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.program-item {
    background-color: #f8f6fb;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #e2dfe9;
    transition: transform 0.3s ease;
}

.program-item:hover {
    transform: translateY(-4px);
}

.program-item h3 {
    margin-bottom: 10px;
    font-weight: 600;
}

/* Impact Section */
.impact {
    background-color: #fafafa;
}

.impact-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.impact-list li::before {
    content: '\2714'; /* check mark symbol */
    position: absolute;
    left: 0;
    top: 0;
    color: #7b5ea7;
}

/* Call to Action Section */
.cta {
    background-color: #4e426d;
    color: #fff;
    text-align: center;
}

.cta h2 {
    color: #fff;
}

.cta p {
    margin-bottom: 20px;
}

/* Contact Section */
.contact-details {
    margin-top: 20px;
    font-size: 1rem;
    color: #333;
}

.contact-details li {
    margin-bottom: 8px;
}

.contact-details a {
    color: #7b5ea7;
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #4e426d;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .navbar .nav-links {
        display: none;
    }
    .navbar {
        justify-content: center;
    }
}