.slideshow-section {
    text-align: center;
    margin: 20px auto;
    max-width: 800px; /* Limit width of the slideshow section */
    background-color: #f0f0f0; /* Gray background */
    padding: 20px; /* Add padding for better spacing */
    border-radius: 8px; /* Optional: rounded corners */
}

.slideshow-container {
    position: relative;
    margin: auto;
}

.mySlides {
    display: none; /* Hide slides by default */
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active {
    background-color: #717171;
}

/* Additional styles for text color */
.slideshow-section h2, 
.slideshow-section p {
    color: #007BFF; /* Blue text color */
}
