/* Reset default margin and padding */
body, h1, h2, h3, ul, li {
    margin: 0;
    padding: 0;
}

/* Basic styling */
body {
    font-family: Arial, sans-serif;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #f1f1f1;
}

.logo {
    max-width: 100px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav li {
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
}

main {
    padding: 20px;
}

.carousel {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.carousel img {
    max-width: 100%;
    height: auto;
    margin: 0 10px;
}

.form-container {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.form-container h2 {
    margin-bottom: 10px;
}

form {
    display: flex;
    flex-direction: column;
}

button {
    margin-top: 10px;
}

.carousel img:not(:first-child) {
    display: none;
     max-width: 100%;   /* Limit the image width to fit within the container */
    max-height: 600px; /* Set a maximum height for the images */
    margin: 0 auto;    /* Center the images horizontally */
}

.carousel {
    text-align: center; /* Center align images within the carousel */
}

.carousel img {
    max-width: 100%;   /* Limit the image width to fit within the container */
    max-height: 600px; /* Set a maximum height for the images */
    margin: 0 auto;    /* Center the images horizontally */
}
.about-header {
    text-align: center;
    margin-top: 20px;
}

.profile-image {
    width: 200px; /* Adjust the width as needed */
    height: auto; /* Maintain the aspect ratio */
}

.about-description {
    max-width: 800px; /* Limit the width of the description */
    margin: 0 auto; /* Center align the description */
    padding: 20px;
}






