/* CSS Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}

/* Header */
header {
    background-color: #6a1b9a; /* Purple theme */
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
#hero {
    background: linear-gradient(to bottom, #6a1b9a, #bbdefb); /* Purple to sky blue */
    color: white;
    text-align: center;
    padding: 100px 20px;
}

#hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

#hero p {
    font-size: 24px;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #ffffff;
    color: #6a1b9a;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

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

/* About Section */
#about {
    padding: 60px 20px;
    text-align: center;
    background-color: white;
}

#about h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #6a1b9a;
}

#about p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 18px;
}

/* Our Approach Section */
#approach {
    padding: 60px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

#approach h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #6a1b9a;
}

.approach-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.approach-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 300px;
    text-align: left;
}

.approach-card h3 {
    color: #6a1b9a;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #6a1b9a;
    color: white;
    text-align: center;
    padding: 20px;
}

footer p {
    margin: 0;
}

/* Media Queries for Mobile Friendliness */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 10px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
    }

    nav ul li {
        margin: 10px 0;
    }

    #hero {
        padding: 60px 20px;
    }

    #hero h1 {
        font-size: 36px;
    }

    #hero p {
        font-size: 18px;
    }

    .approach-grid {
        flex-direction: column;
        align-items: center;
    }

    .approach-card {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }

    #hero h1 {
        font-size: 28px;
    }

    #hero p {
        font-size: 16px;
    }

    #about h2, #approach h2 {
        font-size: 28px;
    }

    .cta-button {
        padding: 10px 20px;
    }
}