/* General styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(120deg, #e6e6e6, #f3f3f3);
    color: #333;
}

/* Header styling */
header {
    position: sticky;
    top: 0;
    background-color: #222;
    padding: 10px 0;
    color: white;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: white;
    background-color: #555;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

nav a:hover {
    background-color: #777;
    transform: scale(1.05);
}

/* Content section styling */
.content {
    padding: 40px 20px;
    text-align: center;
}

.content h2 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 20px;
}

.content p {
    font-size: 1.2rem;
    margin: 10px auto;
    line-height: 1.6;
    max-width: 800px;
}

.content ul {
    list-style: none;
    padding: 0;
}

.content ul li {
    background: #eee;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hero section styling */
.hero-section {
    background: linear-gradient(120deg, #3E4EB8, #55E6C1);
    color: white;
    text-align: center;
    padding: 60px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 600px) {
    nav {
        flex-direction: column;
        gap: 10px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p, .content p {
        font-size: 1rem;
    }
}
