css: /* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: white;
    line-height: 1.6;
    background-color: #0a0a0a;
}

/* Background with lotus image */
body {
    background-image: url('https://images.unsplash.com/photo-1625980953551-50502b3b8b2f?q=80&w=1631&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Header styles */
header {
    background: rgba(0, 50, 50, 0.8);
    padding: 2rem 0;
    text-align: center;
    border-bottom: 3px solid #2a9d8f;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #2a9d8f;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Navigation styles */
nav {
    background: rgba(0, 80, 80, 0.9);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav a:hover {
    background: rgba(42, 157, 143, 0.8);
    transform: translateY(-2px);
}

/* Main content area */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(0, 30, 30, 0.85);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Section styles */
section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(0, 40, 40, 0.7);
    border-radius: 10px;
    border-left: 4px solid #2cdbd8;
}

h2 {
    color: #2a9d8f
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #2cdbd8;
    padding-bottom: 0.5rem;
}

h3 {
    color: #2a9d8f;
    font-size: 1.8rem;
    margin: 1.5rem 0 1rem 0;
}

/* Paragraph styles */
p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: justify;
    text-indent: 2rem;
}

/* Link styles */
a {
    color: #2a9d8f;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #2cdbd8;
    text-decoration: underline;
}

/* List styles */
ul, ol {
    margin: 1rem 0 1rem 2rem;
}

li {
    margin-bottom: 0.5rem;
    color: #f4f4f4;
}

/* Image styles */
.lotus-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1rem 0;
    border: 3px solid #2a9d8f;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.image-container {
    text-align: center;
    margin: 2rem 0;
}

/* Footer styles */
footer {
    background: rgba(0, 50, 50, 0.9);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 3px solid #2a9d8f;
}

/* Responsive design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    main {
        margin: 1rem;
        padding: 1rem;
    }
    
    header h1 {
        font-size: 2rem;
    }
}
