/* Base font and colors */
.inf0-wrapper {
  font-family: 'Montserrat', sans-serif;
  color: #222;
  font-weight: 400;
  line-height: 1.8;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-size: 1.2rem;
}

/* Layout */
.inf0-wrapper .inf0-info-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.inf0-wrapper .inf0-info-main {
  flex: 2;
  min-width: 0;
}

.inf0-wrapper .inf0-info-sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Headings */

.inf0-wrapper h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: #d2a333;
  line-height: 1.2;
}

.inf0-wrapper h2.inf0-heading {
  font-size: 2.8rem;
  font-weight: 100;
  line-height: 1.3;
}

.inf0-wrapper h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #5b74b8;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

/* Optional Gold/Navy heading overrides */
.inf0-wrapper h1.inf0-gold,
.inf0-wrapper h2.inf0-gold,
.inf0-wrapper h3.inf0-gold {
  color: #d2a333;
  font-weight: 900;
  line-height: 1.2;
}

.inf0-wrapper h1.inf0-navy,
.inf0-wrapper h2.inf0-navy,
.inf0-wrapper h3.inf0-navy {
  color: #455581;
  font-weight: 900;
  line-height: 1.2;
}

/* Paragraphs */
.inf0-wrapper p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Gold emphasized text */
.inf0-wrapper .inf0-gold {
  color: #d2a333;
}

/* Gold Tick Bullet List */
ul.gold-ticks {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
  font-size: 1.2rem;
  line-height: 1.8;
}

ul.gold-ticks li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

ul.gold-ticks li::before {
  content: "✓";
  color: #d2a333;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* Image Styling */
.inf0-wrapper img {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
}

/* Sidebar */
.inf0-wrapper .inf0-sidebar-block {
  background: #f7f7f7;
  padding: 1rem;
  border: 1px solid #ddd;
  text-align: center;
}

.inf0-wrapper .inf0-sidebar-block img {
  width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
}

/* Sidebar Links */
.inf0-wrapper .inf0-service-links {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 0 0;
  text-align: center;
}

.inf0-wrapper .inf0-service-links li {
  margin-bottom: 0.5rem;
}

.inf0-wrapper .inf0-service-links a {
  text-decoration: none;
  font-weight: 700;
  color: #455581;
}

.inf0-wrapper .inf0-service-links a:hover {
  color: #d2a333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .inf0-wrapper .inf0-info-section {
    flex-direction: column;
  }

  .inf0-wrapper .inf0-info-main,
  .inf0-wrapper .inf0-info-sidebar {
    width: 100%;
  }
}





.fit-videos {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.fit-videos iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

