
#hero-23 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 5rem 0;
  text-align: center;
}
#hero-23 .container {
  position: relative;
  z-index: 2;
}
#hero-23 .hero-content-wrapper-23 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#hero-23 .hero-title-23 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
#hero-23 .hero-subtitle-23 {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 1.75rem;
  opacity: 0.95;
}
#hero-23 .hero-cta-button-23 {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  transition: background-color 0.2s ease, color 0.2s ease, filter 0.2s ease;
}
#hero-23 .hero-cta-button-23:hover {
  filter: brightness(115%);
}
@media (max-width: 767.98px) {
  #hero-23 {
    min-height: 50vh;
    padding: 4rem 0;
  }
  #hero-23 .hero-title-23 {
    font-size: 2.4rem;
  }
  #hero-23 .hero-subtitle-23 {
    font-size: 1.1rem;
  }
}



#team-11 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f9fa;
  overflow: hidden;
}
#team-11 .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
#team-11 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#team-11 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#team-11 .photo-grid-wrapper .row {
  --bs-gutter-x: 0.5rem;
  --bs-gutter-y: 0.5rem;
  justify-content: center;
}
#team-11 .photo-item {
  line-height: 0;
  position: relative;
  overflow: hidden;
}
#team-11 .photo-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  display: block;
}
#team-11 .photo-item.shape-circle img,
#team-11 .photo-item.shape-circle {
  border-radius: 50%;
}
#team-11 .photo-item.shape-square img,
#team-11 .photo-item.shape-square {
  border-radius: 0.25rem;
}
#team-11 .photo-item a::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(var(--bs-primary-rgb), 0);
  transition: background-color 0.3s ease;
  border-radius: inherit;
}
#team-11 .photo-item a:hover::after {
  background-color: rgba(var(--bs-primary-rgb), 0.2);
}
#team-11 .photo-item a:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}
@media (max-width: 767.98px) {
  #team-11 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #team-11 .section-title {
    font-size: 2.1rem;
  }
  #team-11 .photo-grid-wrapper .row {
    --bs-gutter-x: 0.3rem;
    --bs-gutter-y: 0.3rem;
  }
}



#about-us-21 {
  padding: 80px 15px;
  background-color: #222;
  color: #fff;
}
#about-us-21 .section-title,
#about-us-21 .section-subtitle {
  text-align: center;
  margin-bottom: 40px;
}
#about-us-21 .features-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
#about-us-21 .unique-feature-card {
  background-color: #333;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  padding: 30px;
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}
#about-us-21 .unique-feature-card:hover {
  transform: translateY(-5px);
}
#about-us-21 .unique-feature-card h3 {
  color: #ffc107;
  margin-bottom: 15px;
}
#about-us-21 .unique-feature-card p {
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}
#about-us-21 .unique-feature-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: auto;
}
/*
#about-us-21 .unique-feature-card.top-left { ... }
#about-us-21 .unique-feature-card.center-right { ... }
#about-us-21 .unique-feature-card.bottom-left { ... }
#about-us-21 .unique-feature-card.top-right { ... }
*/
#about-us-21 .call-to-action-wrapper {
  text-align: center;
  margin-top: 60px;
}
#about-us-21 .call-to-action-wrapper a {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease-in-out;
}
#about-us-21 .call-to-action-wrapper a:hover {
  background-color: #0056b3;
}
/*
@media (max-width: 768px) {
  #about-us-21 .unique-feature-card {
    position: relative;
    width: 80%;
    margin: 20px auto;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: rotate(0) !important;
  }
}
*/



#press-mentions-13 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
#press-mentions-13 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#press-mentions-13 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#press-mentions-13 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#press-mentions-13 .category-block {
  margin-bottom: 3.5rem;
}
#press-mentions-13 .category-block:last-child {
  margin-bottom: 0;
}
#press-mentions-13 .category-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #dee2e6;
  display: inline-flex;
  align-items: center;
}
#press-mentions-13 .category-title i {
  margin-right: 0.8rem;
  font-size: 1.4rem;
  color: var(--bs-primary);
}
#press-mentions-13 .mention-item {
  display: flex;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e9ecef;
}
#press-mentions-13 .category-block .mention-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
#press-mentions-13 .mention-logo {
  flex-shrink: 0;
  width: 100px;
  margin-right: 1.5rem;
  text-align: center;
}
#press-mentions-13 .mention-logo img {
  max-height: 40px;
  max-width: 100%;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
}
#press-mentions-13 .mention-item:hover .mention-logo img {
  filter: grayscale(0%);
  opacity: 1;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
#press-mentions-13 .mention-logo-placeholder {
  width: 100px;
  height: 40px;
  background-color: #f8f9fa;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
}
#press-mentions-13 .mention-logo-placeholder i {
  color: #adb5bd;
  font-size: 1.5rem;
}
#press-mentions-13 .mention-content {
  flex-grow: 1;
}
#press-mentions-13 .mention-headline {
  font-size: 1.1rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.3rem;
}
#press-mentions-13 .mention-headline a {
  color: inherit;
  text-decoration: none;
}
#press-mentions-13 .mention-headline a:hover {
  color: var(--bs-primary);
  text-decoration: underline;
}
#press-mentions-13 .mention-quote {
  font-size: 0.95rem;
  font-style: italic;
  color: #495057;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  border-left: 3px solid #e0e0e0;
}
#press-mentions-13 .mention-meta {
  font-size: 0.85rem;
  color: #6c757d;
}
#press-mentions-13 .mention-meta .publication {
  font-weight: 500;
}
#press-mentions-13 .mention-meta .separator {
  margin: 0 0.4rem;
  opacity: 0.7;
}
#press-mentions-13 .mention-meta .read-more a {
  color: var(--bs-primary);
  text-decoration: none;
  font-weight: 500;
}
#press-mentions-13 .mention-meta .read-more a:hover {
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  #press-mentions-13 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #press-mentions-13 .section-title {
    font-size: 2.1rem;
  }
  #press-mentions-13 .category-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
  #press-mentions-13 .mention-item {
    padding: 1rem 0;
    flex-direction: column;
  }
  #press-mentions-13 .mention-logo,
  #press-mentions-13 .mention-logo-placeholder {
    margin-right: 0;
    margin-bottom: 1rem;
    width: auto;
    text-align: left;
  }
  #press-mentions-13 .mention-headline {
    font-size: 1rem;
  }
}



#call-to-action-3 {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 70px 15px;
  color: #fff;
  text-align: center;
}
#call-to-action-3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
#call-to-action-3 .content {
  position: relative;
  z-index: 2;
}
#call-to-action-3 h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}
#call-to-action-3 p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}
#call-to-action-3 .btn {
  background-color: #ff5722;
  color: #fff;
  padding: 12px 25px;
  font-size: 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}
#call-to-action-3 .btn:hover {
  background-color: #e64a19;
}
#call-to-action-3 .statistics {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}
#call-to-action-3 .stat {
  text-align: center;
}
#call-to-action-3 .stat .value {
  font-size: 2rem;
  font-weight: bold;
}
#call-to-action-3 .stat .label {
  font-size: 1rem;
  color: #ddd;
}


