/* General Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #4a1670, #3e3dde);
    color: #fff;
    overflow-x: hidden;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 2em;
}

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

nav li {
    display: inline-block;
    margin-left: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(74, 22, 112, 0.8), rgba(62, 61, 222, 0.8)), url('hero-image.jpg') no-repeat center center/cover;
    padding: 200px 0 150px;
    text-align: center;
    margin-top: 80px; /* Adjust according to header height */
    border-bottom-left-radius: 50% 10%;
    border-bottom-right-radius: 50% 10%;
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.btn {
    background-color: #fff;
    color: #4a1670;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: background-color 0.3s, color 0.3s;
}

.btn:hover {
    background-color: #4a1670;
    color: #fff;
}

/* Main Content */
main {
    padding: 60px 0;
    background-color: #fff;
    color: #333;
}

main h2 {
    color: #4a1670;
    font-size: 2.5em;
    margin-bottom: 20px;
}

section {
    margin-bottom: 60px;
}

section p, section ul {
    font-size: 1.1em;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    text-align: center;
    color: #fff;
}

footer a {
    color: #80cbc4;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    header h1 {
        margin-bottom: 10px;
    }

    nav li {
        display: block;
        margin: 10px 0;
    }

    .hero h2 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .btn {
        padding: 10px 20px;
    }
}
