* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
    background-size: cover;
}


.navbar {
  background-color: #f5e3d0;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.nav-links a {
  margin: 0px 20px;
  text-decoration: none;
  color: #1b1b1b;
  font-weight: 500px;
  font-size: 16px;
}

.nav-icons {
  display: flex;
  gap: 10px;
}

.icon {
  width: 20px;
  height: 20px;
  background-color: #b30000;
  border-radius: 50%;
}
.about-hero {
    background-color: #666;
    height: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 36px;
    font-weight: bold;
    background-image: url(../images/Olive%20green%20leather%20shoe.jpg);
}

.about-section {
  display: flex;
  padding: 60px 40px;
  background-color: #fff;
  align-items: flex-start;
  gap: 40px;
}

.about-image {
    width: 500px;
    height: 500px;
    background-color: #999;
    background-image: url(../images/Aleck%20Vengayi.jpg);
    background-position: 30% 0%;
}

.about-text {
  flex: 5;
  font-size: 16px;
  line-height: 1.6;
padding-left: 25px;
}

.about-label {
  background-color: #c21d1d;
  color: #ffffff;
  padding: 6px 16px;
  display: inline-block;
  border-radius: 6px;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
}

.about-deep {
  padding: 60px 40px;
  background-color: #fff;
  font-size: 16px;
  line-height: 1.7;
}

.about-deep .label {
  display: inline-block;
  background-color: #a60000;
  color: white;
  padding: 10px 20px;
  margin-bottom: 20px;
  font-weight: bold;
  border-radius: 5px;
}

.about-media {
  background-color: #666;
  height: 300px;
  margin-top: 60px;
} 

.reviews-section {
  text-align: left;
  padding: 40px;
  background-color: #c21d1d;
  color: #ffffff;
}

.reviews-container {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}

.review-card {
  width: 220px;
  height: 320px;
  background-color: #ff4c4c;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.review-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.footer {
  background-color: #111;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}


#about-accordion {
   width: 100%;
  margin: 50px 0;
  font-family: 'Segoe UI', 'Roboto', sans-serif;
}


.ui-accordion .ui-accordion-header {
    background: #fff;
    color: #000000;
    font-size: 17px;
    font-weight: 600;
    padding: 15px 20px;
    margin-top: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
}


.ui-accordion .ui-accordion-header:hover {
  background: #f0f0f0;
}


.ui-accordion .ui-accordion-header.ui-state-active {
    background-color: #B30000;
    color: #fff;
    border: 1px solid #1F472C;
}


.ui-accordion .ui-accordion-content {
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  padding: 18px 20px;
  font-size: 16px;
  color: #444;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border-radius: 0 0 5px 5px;
}


@media (max-width: 768px) {
  #accordion h3 {
    font-size: 16px;
    padding: 12px;
  }

  #accordion .ui-accordion-content {
    font-size: 14px;
    padding: 12px 16px;
  }
}


@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 15px;
  }

.nav-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 5px;
  }

  .nav-links a {
    font-size: 15px;
    padding: 6px 10px;
    text-align: center;
  }

  .nav-icons {
    display: none;
  }
	
.logo img {
  margin-bottom: 10px;
}

  .about-section {
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
  }

  .about-image {
    width: 100%;
    height: 300px; 
    background-size: cover;
    background-position: center;
  }

  .about-text {
    width: 100%;
    padding-left: 0;
    font-size: 15px;
    line-height: 1.7;
    text-align: justify;
  }

  .about-text h1,
  .about-text h2 {
    text-align: left;
    font-size: 20px;
    margin-bottom: 10px;
  }
}

  
  .reviews-section {
    padding: 20px;
  }

  .review-header {
    font-size: 22px;
    margin-bottom: 10px;
    text-align: center;
  }

  .review-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .review-image {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }

  .review-text {
    font-size: 14px;
  }

 
  .instagram-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .instagram-card {
    width: 100%;
    height: 200px;
    background-color: #c0392b; 
  }

  
  footer {
    padding: 20px;
    text-align: center;
    font-size: 14px;
  }

