body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

.slider-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.description {
    position: absolute;
    bottom: 50px; /* Adjusted to leave space for dots */
    left: 20px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
}

.description h2 {
    margin: 0;
    font-size: 24px;
}

.description p {
    margin: 5px 0 0;
}

.dots-container {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
    pointer-events: none;
}

.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;
    pointer-events: auto;
}

.active, .dot:hover {
    background-color: #717171;
}

.header {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
}

.header .logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.header .header-text h3, .header .header-text p {
    margin: 0;
    color: white;
    text-shadow: 2px 2px 4px #000;
}

@media (max-width: 600px) {
    .slide img {
        height: 100vh; /* Full height */
    }
    .description {
        font-size: 14px;
    }
    .description h2 {
        font-size: 18px;
    }
}
