.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    color: #333;
}

.image-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 10px;
}

.image-wrapper {
    display: flex;
    transition: transform 0.3s ease;
}

.image-slider img {
    width: 100%;
    flex-shrink: 0;
}

.dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: left;
    color: #333;
}

.content {
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

@media screen and (max-width: 600px) {
    .title {
        font-size: 20px;
    }

    .content {
        font-size: 14px;
    }
}