#about {
    background-color: #f5f5f5; /* Light background color */
    padding: 40px 20px; /* Padding for spacing */
    text-align: center; /* Centered text */
}
.about-container {
    max-width: 800px; /* Maximum width for the container */
    margin: auto; /* Centering the container */
    padding: 20px; /* Inner padding */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
    background-color: white; /* White background for the content */
}

#about h2 {
    font-size: 2.5rem; /* Font size for the heading */
    margin-bottom: 20px; /* Margin below the heading */
    color: #0ef; /* Primary color for the heading */
}

#about p {
    font-size: 1.1rem; /* Font size for the paragraphs */
    line-height: 1.6; /* Line height for readability */
    color: #333; /* Dark gray color for text */
    margin-bottom: 15px; /* Margin below each paragraph */
}
