body {
    overflow-x: hidden;
}

.image-section {
    display: flex;
    align-items: flex-start;
    padding: 50px 0;
    flex-wrap: wrap;
}

.image-section .image-container {
    position: relative;
    overflow: hidden;
}

.image-section img {
    width: 550px;
    height: 450px;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.image-section img:hover {
    transform: scale(1.2);
}

.image-section .info {
    max-width: 600px;
    margin-left: 20px;
}

.image-section .info h2 {
    font-size: 28px;
    margin-top: 20px;
}

.image-section .info ul {
    list-style-type: disc;
    padding-left: 20px;
}

.image-section .info ul li {
    font-size: 16px;
    line-height: 2.6;
    text-align: justify;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .image-section {
        flex-direction: column;
        /* Stack items vertically on smaller screens */
    }
}

.four-images-section {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
    background-color: #AAC0C7;
}

.four-images-section .image-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
}

.four-images-section img {
    width: 250px;
    height: 250px;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.four-images-section img:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .four-images-section {
        flex-wrap: wrap;
        /* Allow wrapping on smaller screens */
        justify-content: center;
        /* Center items */
    }

    .four-images-section .image-item {
        margin-bottom: 20px;
        /* Add spacing between items */
    }

    .four-images-section img {
        max-width: 250px;
        /* Set a max width for smaller devices */
    }
}

.four-images-section .image-name {
    margin-top: 10px;
    font-size: 16px;
}


/* footer */
.footer {
    background-color: #153056;
    color: white;
    padding: 40px 0;
}

.footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    margin: 10px;
    text-align: center;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-section p,
.footer-section a {
    color: white;
    font-size: 16px;
    margin-bottom: 10px;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.social-media img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.copyright {
    text-align: center;
    background-color: white;
    color: black;
    margin-top: 20px;
    border-top: 1px solid #ffffff;
    padding-top: 10px;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.social-media img {
    text-align: center;
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* review */
.reviews-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    width: 80%;
    margin: 20px auto;
}

.reviews {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.review {
    min-width: 200px;
    max-width: 200px;
    margin: 0 10px;
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex-shrink: 0;
}

.stars {
    font-size: 20px;
    color: gold;
    margin-bottom: 5px;
}

.arrows {
    display: flex;
    justify-content: space-between;
    width: 50px;
    margin-top: 10px;
}

.arrow {
    background-color: #153056;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

.arrow:disabled {
    background-color: #aaa;
    cursor: not-allowed;
}

.arrow:hover:not(:disabled) {
    background-color: #102a47;
}

@media (max-width: 1024px) {
    /* Styles for screens smaller than 1024px */
}