body {
    font-family: Arial, sans-serif;
    background-color: #B7DAF7;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    overflow-y: auto; /* Allow vertical scrolling */
}

.container {
    width: 80%;
    max-width: 800px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    color: #1D4A99;
    font-size: 30px;
    text-align: center;
}

p {
    color: #333;
    font-size: 17px;
    text-align: center;
}

a {
    color: #1D4A99;
    text-decoration: none;
    margin-bottom: 20px;
}

a:hover {
    text-decoration: underline;
}

.image-slider {
    width: 100%;
    max-width: 600px; /* Reduced width for a narrower aspect ratio */
    height: 800px; /* Increased height for a longer aspect ratio */
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out; /* Increased transition time for smooth effect */
    background-size: cover;
    background-position: center;
}

.active {
    opacity: 1;
}
