
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    text-align: center;
}


.header-container {
    display: flex;
    align-items: center;
    background-color: #e0e0e0;
    padding: 10px 20px;
    
}

.logo {
    height: 40px;
    width: 40px;
    margin-right: 20px;
}

.searchbar {
    flex: 1;
    padding: 5px;
    margin-right: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.cart-icon {
    display: flex;
    align-items: center;
}

.cart-icon img {
    height: 20px;
    width: 20px;
}


nav {
    background-color: #c0c8d0;
    padding: 15px 0;
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0 20px;
}

.nav-menu li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 10px 30px;
    background-color: #627DAE;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.nav-menu li a:hover {
    background-color: #50699A;
}


.our-package {
    text-align: center;
    padding: 30px;
}

.fonts h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}


.image-package {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; 
    gap: 30px;
    padding: 10px;
}

.package-item {
    display: flex;
    flex-direction: column;
    align-items: center; 
    width: 220px;
    text-align: center;
    flex-shrink: 0;
}

.package-image {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    border: 1px solid #ccc;
    transition: transform 0.3s ease;
    margin-bottom: 10px;
}

.package-item figcaption {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.package-image:hover {
    transform: scale(1.05);
}
