body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    color: #fff;
    background-color: #002F5D;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #003A70;
}

.logo img {
    max-height: 80px;
}

.cta {
    display: inline-block;
    padding: 15px 25px;
    background: #FFA500;
    color: #002F5D;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
}

.service img {
    width: 100%;
    max-width: 500px;
    border: 5px solid white;
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 20px;
    background: #003A70;
}

/* Brochure Thumbnail Styling */
.brochure-container {
    text-align: center;
    margin-top: 20px;
}

.brochure-container img {
    width: 200px;
    border: 3px solid #FFA500;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.brochure-container img:hover {
    transform: scale(1.3);
    border: 5px solid red;
}

/* Slideshow Styling */
.slideshow-container {
    width: 100%;
    max-width: 800px; /* Ensures proper size */
    height: 300px; /* Keeps slideshow compact */
    position: relative;
    margin: 20px auto;
    overflow: hidden;
    border: 3px solid #FFA500;
    border-radius: 10px;
}

.slideshow-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slideshow-container img.active {
    opacity: 1;
}
