.angie-container-slider {
    width: 100%;
    height: 70vh; /* Default height */
    position: relative;
    overflow: hidden;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.angie-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay */
    z-index: 1;
}

.angie-slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 20px;
}

.angie-slide-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

.angie-slide-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #f0f0f0;
}

.angie-slide-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff6b00; /* Orange color often associated with containers */
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.angie-slide-button:hover {
    background-color: #e65100;
}

/* Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

.swiper-pagination-bullet-active {
    background: #ff6b00;
}

/* Responsive */
@media (max-width: 768px) {
    .angie-slide-content h2 {
        font-size: 2rem;
    }
    .angie-slide-content p {
        font-size: 1rem;
    }
}
