body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #1b2838;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #171a21;
  padding: 10px 40px;
  color: white;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
}

.logo img {
  height: 30px;
  margin-right: 10px;
}

.nav {
  display: flex;
  gap: 25px;
}

.nav a {
  color: #c7d5e0;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.nav a:hover {
  color: #66c0f4;
}

.search-box {
  display: flex;
  align-items: center;
  background: #2a475e;
  border-radius: 3px;
  padding: 5px 10px;
}

.search-box input {
  background: transparent;
  border: none;
  color: white;
  outline: none;
  width: 180px;
}

.search-box button {
  background: none;
  border: none;
  color: #66c0f4;
  font-size: 18px;
  cursor: pointer;
}

.user-buttons {
  display: flex;
  gap: 15px;
}

.user-buttons a {
  text-decoration: none;
  color: #c7d5e0;
  transition: 0.3s;
}

.user-buttons a:hover {
  color: #66c0f4;
}

#about1{
    background-color: rgb(47, 47, 47);
    text-align: center;
    margin-top: 20px;
}

.product {
            display: inline-block;
            background-color: #000000;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin: 20px;
            padding: 20px;
            text-align: center;
            justify-content: center;
            width: 280px;
        }
        .product img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }
        .product h3 {
            color: #ff8a00;
            font-size: 20px;
            margin: 15px 0;
        }
        .product p {
            font-size: 18px;
            color: #555;
        }
        .product .price {
            font-size: 22px;
            font-weight: bold;
            color: #d9534f;
        }
#FT{
            height:500px;
            display: block;
            background-image: 
                    linear-gradient(rgba(19, 178, 241, 0.4), rgba(17, 60, 179, 0.4)); 
            background-repeat: none;
            font-size: 60px;
            padding: 10px;
            margin: 30px 0 0 0;
            color: rgb(46, 20, 1);
        }
        #FT li{
            margin-left: 50px;
            padding: 10px;
            display: flex;
            font-size: 50%;
        }
        .map{
            float: right;
        }