body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    color: #333;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

header {
    background-color: #white;  /* Orange color */
    color: #fff;
    padding: 1em;
    font-size: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

header img {
    max-height: 50px;
    margin-right: 10px;

}

section {
    padding: 2em;
}

#slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    margin-bottom: 20px;
}

.slide {
    display: none;
    max-width: 100%;
    height: auto;
}

p {
    margin-top: 20px;
    font-size: 20px;
}

button {
    background-color: #d35400;  /* Darker orange color */
    color: #fff;
    padding: 1.5em 3em;
    font-size: 1.2em;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

button:hover {
    background-color: #a04000;  /* Darker shade on hover */
}
