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

/* Header Section */
header {
    background-color: #007bff; /* Blue background */
    color: white;
    text-align: center;
    padding: 40px;
    margin: 0;
}

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

/* About Section */
#about {
    text-align: center;
    padding: 40px;
    background-color:  #f9f9f9
    ;
    color: #333;
}

.about-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.about-info {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.about-info h2 {
    color: #007bff;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.about-info p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.about-info ul {
    list-style-type: none;
    padding-left: 0;
}

.about-info ul li {
    font-size: 1.1rem;
    margin: 10px 0;
}

.about-image {
    flex: 1;
    max-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: white;
    margin-top: 20px;
}
