body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}
header {
    background-color: #4CAF50;
    color: white;
    padding: 10px 0 3px 0;
    text-align: center;
}
header a{
    color: white;
    text-decoration: wavy;
    font-size: 20px;
    font-weight: bolder; 
}
section {
    padding: 20px;
}
h1, h2 {
    color: #f7faf7;
}
.step {
    margin: 20px 0;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
}
.image-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.image-wrapper {
    flex: 1 1 300px;
    max-width: 500px;
    margin: 10px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.image-wrapper img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .image-wrapper {
        flex: 1 1 100%;
        margin: 10px 0;
    }
}
/* Carousel container */
.carousel {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
}

.carousel .list {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel .item {
    flex: 0 0 100%;
    width: 100%;
}

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

.carousel .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    cursor: pointer;
    z-index: 10;
}

.carousel .nav:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

#prev {
    left: 10px;
}

#next {
    right: 10px;
}

/* Thumbnail section (optional) */
.carousel .thumbnails {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.carousel .thumbnails .item {
    width: 60px;
    height: 40px;
    margin: 0 5px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.carousel .thumbnails .item.active {
    opacity: 1;
    border: 2px solid #eee;
    border-radius: 5px;
}
