body{
  background-color: #f6f8fa;
  font-family: 'Inter', sans-serif;
}

/* Keyframes for animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.bespoke-container {
  background: #f4f8fc;                /* soft cool gray for gentle contrast */
  border-radius: 20px;
  box-shadow: 0 10px 48px #98b5ca25, 0 1.5px 4px #fa923f11;
  max-width: 780px;
  margin: 48px auto 40px auto;
  padding: 44px 44px 36px 44px;
  font-family: 'Inter', sans-serif;
  animation: fadeInUp 1s ease-out;
}

.bespoke-container h1 {
  color: #1768ac;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 2.85rem;
  margin-bottom: 0px;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 8px #d3eafd80;
  border-bottom: 4px solid #fa923f;
  display: inline-block;
  line-height: 1.12;
  animation: bounceIn 1.2s ease-out 0.2s both;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.bespoke-container h1:hover {
  transform: scale(1.05);
}

.bespoke-container h2 {
  color: #1768ac;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-top: 40px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  animation: slideInLeft 1s ease-out both;
  position: relative;
  overflow: hidden;
}


@keyframes slideIn {
  from {
    left: -100%;
  }
  to {
    left: 0;
  }
}

.bespoke-container h2:nth-of-type(1) { animation-delay: 0.5s; }
.bespoke-container h2:nth-of-type(2) { animation-delay: 1s; }
.bespoke-container h2:nth-of-type(3) { animation-delay: 1.5s; }
.bespoke-container h2:nth-of-type(4) { animation-delay: 2s; }

.bespoke-container p {
  font-size: 1.2rem;
  color: #1e263b;
  margin-bottom: 22px;
  animation: fadeInUp 1s ease-out both;
}

.bespoke-container p:nth-of-type(1) { animation-delay: 0.7s; }
.bespoke-container p:nth-of-type(2) { animation-delay: 1.2s; }
.bespoke-container p:nth-of-type(3) { animation-delay: 1.7s; }
.bespoke-container p:nth-of-type(4) { animation-delay: 2.2s; }
.bespoke-container p:nth-of-type(5) { animation-delay: 2.7s; }
.bespoke-container p:nth-of-type(6) { animation-delay: 3.2s; }

.bespoke-container ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out 2.5s both;
}

.bespoke-container ul li {
  font-size: 1.15rem;
  color: #1e263b;
  margin-bottom: 15px;
  line-height: 1.6;
  position: relative;
  padding-left: 25px;
  animation: fadeInUp 0.8s ease-out both;
}

.bespoke-container ul li:nth-child(1) { animation-delay: 2.8s; }
.bespoke-container ul li:nth-child(2) { animation-delay: 3.1s; }
.bespoke-container ul li:nth-child(3) { animation-delay: 3.4s; }

.bespoke-container ul li::before {
  content: '✓';
  color: #fa7a0a;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  animation: bounceIn 0.5s ease-out both;
}

.bespoke-container ul li::before:nth-child(1) { animation-delay: 2.8s; }
.bespoke-container ul li::before:nth-child(2) { animation-delay: 3.1s; }
.bespoke-container ul li::before:nth-child(3) { animation-delay: 3.4s; }

.bespoke-container ul li:hover {
  color: #1768ac;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.highlight-blue {
  color: #1768ac;
  font-weight: 600;
}

.highlight-orange {
  color: #fa7a0a;
  font-weight: 700;
}

.call-to-action {
  color: #153a5e;
  font-size: 1.23rem;
  font-weight: 700;
  margin-top: 30px;
}

.call-to-action.emphasize {
  color: #fa7a0a;
  font-style: italic;
  font-size: 1.32rem;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.bespoke-container h2 {
  color: #1768ac;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-top: 40px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.bespoke-container ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.bespoke-container ul li {
  font-size: 1.15rem;
  color: #1e263b;
  margin-bottom: 15px;
  line-height: 1.6;
  position: relative;
  padding-left: 25px;
}

.bespoke-container ul li::before {
  content: '✓';
  color: #fa7a0a;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.bespoke-container ul li strong {
  color: #1768ac;
  font-weight: 700;
}

.bespoke-container hr {
  border: none;
  height: 1px;
  background-color: #444141; /* Black as requested */
  margin: 30px 0;
}

/* Responsive for mobile */
@media (max-width: 700px) {
  .bespoke-container {
    padding: 24px 10px 18px 10px;
  }
  .bespoke-container h1 {
    font-size: 2.1rem;
    margin-bottom: 20px;
  }
  .bespoke-container p {
    font-size: 1.01rem;
  }
}

/* nav-bar */
.hori-selector{
  background-color: #f6f8fa;
}

.hori-selector .right,
.hori-selector .left{
  background-color: #f6f8fa;
}

#navbarSupportedContent>ul>li.active>a{
  color:black;
}

/* NAVBAR responsiveness */
@media (max-width: 768px) {
  .hori-selector {
    width: 100%;
  }
  #navbarSupportedContent > ul > li > a {
    font-size: 1em;
  padding-bottom: 10px;
  margin-top: -3px;
  }
}