body {
    font-family: 'Helvetica', 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
header {
    color: black;
    padding: 5px 10px;
    text-align: center;
}
nav {
    display: flex;
    justify-content: center;
    padding: 15px;
}
nav a {
    color: black;
    margin: 0 20px;
    text-decoration: none;
    font-weight: bold;
}
nav a:hover {
    text-decoration: underline;
}
.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 600px;
    overflow: hidden;
}
.slideshow-container img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}
.slides {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}
.slides.active {
    display: block;
}
.caption {
    position: absolute;
    bottom: 50px;
    left: 50px;
    color: white;
    font-size: 2rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}
.content {
    padding: 40px;
}
.section {
    margin-bottom: 60px;
    text-align: left;
}
.section h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
}
.section p {
    font-size: 0.9em;
    line-height: 1.6;
    max-width: 850px;
    padding: 5px 25px;
    
}
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}