* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
}

/* Navigation Bar */
nav {
  display: flex;
  align-items: center;
  background-color: #1f2937;
  padding: 20px 150px;
}

.brand-name {
  margin-right: auto;
  font-size: 24px;
}

.brand-name a {
  color: #f9faf8;
  text-decoration: none;
}

.nav-links {
  list-style-type: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  font-size: 18px;
  color: #e5e7eb;
}

/* Hero Section */
.hero {
  background-color: #1f2937;
  padding: 80px 150px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.left-box {
  width: 60%;
}

.hero-title {
  color: #f9faf8;
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 18px;
  color: #e5e7eb;
  margin-bottom: 15px;
}

.shop-now-btn {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  background-color: #3882f6;
  color: #fff;
  padding: 8px 30px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.hero img {
  width: 400px;
  height: auto;
  border-radius: 10px;
}

/* Information Section */
.info {
  padding: 120px 200px;
}

.info-title {
  text-align: center;
  font-size: 36px;
  color: #1f2937;
  font-weight: 900;
  margin-bottom: 60px;
}

.info-container {
  display: flex;
  gap: 50px;
}

.info-container img {
  border: 3px solid #3882f6;
  border-radius: 10px;
  padding: 5px;
  width: 100px;
  height: auto;
}

.info-container div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 25%;
}

.info-container p {
  text-align: center;
}

/* Quote Section */
.quote {
  background-color: #e5e7eb;
  padding: 80px 150px;
}

.quote-container {
  display: flex;
  flex-direction: column;
  width: 50%;
  margin: auto;
}

.quote-description {
  color: #1f2937;
  font-size: 36px;
  font-weight: 300;
  font-style: italic;
}

.quote-author {
  color: #1f2937;
  font-weight: 500;
  margin-left: auto;
}

/* Call To Action Section */
.call-to-action {
  padding: 80px 150px;
}

.call-to-action-container {
  background-color: #3882f6;
  padding: 50px 150px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-left-box {
  width: 75%;
}

.cta-title {
  color: #f9faf8;
  font-size: 24px;
  margin-bottom: 10px;
}

.cta-description {
  color: #e5e7eb;
  font-size: 18px;
}

.cta-shop-now-btn {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  background-color: #3882f6;
  color: #fff;
  padding: 10px 30px;
  border: 2px solid #fff;
  border-radius: 10px;
  cursor: pointer;
}

footer {
  color: #e5e7eb;
  display: flex;
  justify-content: center;
  background-color: #1f2937;
  padding: 30px 0;
}
