* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Navbar */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: white;
}

.logo {
  font-weight: bold;
  color: #0a4ea3;
  font-size: 20px;
}

nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.cart {
  margin-left: 10px;
  font-size: 18px;
  cursor: pointer;
}

/* Hero */
.hero {
  width: 100%;
}

.hero img {
  width: 100%;
  height: 50%;
  display: block;
}

/* Jewelry Section */
.jewelry {
  padding: 40px 70px;
  background: #fff;
  
}

.jewelry h1 {

  font-weight: bold;
  margin-bottom: 60px;
  
  text-underline-offset: 6px;
  text-align: center;
  color: #0a4ea3;
}

.cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.card {
  width: 200px;
  text-align: center;
}

.img-box {
  width: 100%;
  height: auto;
  background: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card p {
  margin-top: 10px;
  font-size: 18px;
  
  color:#0a4ea3;
}
.banner{
  width: 100%;
  height: 300px;
  border: 2px solid black;
}
.leftDiv{
  border: 2px solid red;
  width: 49%;
  display: inline-block;
  background-color: #0D5EBA;
  height: 500px;
}
.rightDiv{
  border: 2px solid red;
  width: 49%;
  display: inline-block;
}
.innerLeft{
  /*border: 2px solid white;*/
   /*background-color: white;*/
  width: 500px;
  height: 300px;
  margin: 70px auto;
  color: white;
 
}
.innerLeft h2{
  font-size: 40px;
  margin: 10px;
  
}
.innerLeft p{
  font-size: 30px;
  margin: 10px;
}
.innerLeft button{
  padding: 10px 30px;
}