body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f1f8e9;
    color: #1b5e20;
}

header {
    background-color: #1b5e20;
    color: white;
    padding: 10px 0;
    text-align: center;
}

nav {
    text-align: center;
    margin: 20px 0;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #1b5e20;
}

footer {
    background-color: #1b5e20;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.container {
    display: flex;
    padding: 20px;
}

.slider {
    flex: 1;
}

.text-content {
    color: black;
    flex: 1;
    padding-left: 20px;
}

.about img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
}

/* Slider CSS */
.slider {
    position: relative;
    width: 100%;
    max-width: 400px; /* Width of the slider */
    height: 600px; /* Height of the slider */
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.navigation a {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    text-decoration: none;
    font-size: 18px;
}
