body {
    font-family: Arial, sans-serif;
    background-color: white;
    color: #333;
    margin: 0;
    padding: 0;
}

.header {
    background-color: #40E0D0;
    color: white;
    padding: 20px;
    text-align: center;
}

.header h1 {
    margin: 0;
    font-size: 36px;
}

.tourist-spot {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.spot-card {
    width: 45%;
    background-color: #f4f4f4;
    margin: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.spot-card:hover {
    transform: scale(1.05);
}

.spot-images {
    position: relative;
    height: 200px;
}

.spot-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1s ease;
}

.spot-description {
    padding: 15px;
    text-align: center;
}

.spot-description h2 {
    margin: 10px 0;
    font-size: 24px;
}

.spot-description p {
    font-size: 14px;
    color: #666;
}

.button {
    background-color: #40E0D0;
    color: white;
    padding: 10px 20px;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

.button:hover {
    background-color: #2a9d8f;
}

.image-slider {
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 200px;
}

.image-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s;
}

.image-slider .active {
    opacity: 1;
}
