body {
    margin: 0;
    font-family: Arial, sans-serif;
}
.slider-container {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    overflow: hidden;
}
.slider {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}
.slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
}
.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 70%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.7);
    color: #000;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.overlay h2 {
    font-size: 32px;
    margin-bottom: 15px;
}
.overlay p {
    font-size: 18px;
    max-width: 80%;
}
.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.slider-btn {
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}
.slider-btn.active {
    background-color: white;
}
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}
.nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.8);
}
.prev {
    left: 10px;
}
.next {
    right: 10px;
}
.slider-fullwidth {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
}
