/* Breadcrumb Section */
.breadcrumb-section {
  padding: 12px 0;
  text-align: center;
  /* center the breadcrumbs */
}

.breadcrumbs {
  font-size: 14px;
  display: inline-block;
  /* keeps it nicely centered */
}

.breadcrumbs ol {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumbs li + li::before {
  content: "›";
  color: #666;
  margin: 0 6px;
}

.breadcrumbs a {
  color: #222;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
  color: #000;
}

.breadcrumbs [aria-current="page"] span {
  font-weight: 600;
  color: #78614d;
}

.info-box {
  background: #fdf9f4;
  /* same soft beige background */
  border: 1px solid #d8c6b6;
  border-radius: 12px;
  padding: 25px;
  margin: 20px auto;
  max-width: 560px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.info-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #4a3728;
}

.custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  color: #333;
  line-height: 1.6;
}

.custom-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #7b5e3b;
  /* warm brown to match theme */
}

/* ✅ Responsive */
@media (max-width: 600px) {
  .info-box {
    padding: 18px;
  }

  .info-box h3 {
    font-size: 18px;
  }

  .custom-list li {
    font-size: 15px;
  }
}

.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  justify-content: flex-start; /* default left */
}

.footer-social li {
  display: inline-block;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  transition: all 0.3s ease;
}

/* Brand colors */
.footer-social a.instagram {
  color: #e1306c; /* Instagram pink */
}

.footer-social a.facebook {
  color: #1877f2; /* Facebook blue */
}

.footer-social a.linkedin {
  color: #0077b5; /* LinkedIn blue */
}

/* ✅ Mobile only: center icons */
@media (max-width: 768px) {
  .footer-social ul {
    justify-content: center;
  }
  .icon-list-header-top {
    font-size: 11px !important;
    gap: 5px !important;
    justify-content: center !important;
  }
}
