.health-section {
  width: 100%;
  background: linear-gradient(120deg, #93b8e8 0%, #f0f0f0 50%, #93b8e8 100%);
}

.banner-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.top-banner {
  background: rgba(255, 255, 255, 0.95);
  text-align: center;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 500;
  color: #00539c;
  letter-spacing: 0.5px;
  border-radius: 100px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: inline-block;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}
.content-wrapper h1 {
  color: #00539c;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .content-wrapper h1 {
    font-size: 32px;
  }
  .content-wrapper h1 br {
    display: none;
  }
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 40px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  background: #fff;
  aspect-ratio: 16/9;
}
.video-wrapper .main-video {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
  cursor: pointer;
}
.video-wrapper .main-video::-webkit-media-controls-panel {
  background: linear-gradient(to top, rgba(0, 83, 156, 0.5), transparent);
}
.video-wrapper .main-video::-webkit-media-controls-play-button {
  background-color: #00539c;
  border-radius: 50%;
  margin: 0 10px;
}
.video-wrapper .main-video::-webkit-media-controls-timeline {
  background-color: rgba(0, 83, 156, 0.2);
  border-radius: 10px;
  margin: 10px 10px 0 10px;
}
.video-wrapper .main-video::-webkit-media-controls-current-time-display, .video-wrapper .main-video::-webkit-media-controls-time-remaining-display {
  color: #fff;
}

.play-button-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 83, 156, 0.1);
  transition: opacity 0.3s ease;
  border-radius: 24px;
  pointer-events: none;
}

.play-button {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.98);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  pointer-events: auto;
}
.play-button i {
  color: #00539c;
  font-size: 22px;
  margin-left: 4px;
}
.play-button:hover {
  transform: scale(1.1);
  background: #fff;
}
@media (max-width: 768px) {
  .play-button {
    width: 56px;
    height: 56px;
  }
  .play-button i {
    font-size: 18px;
  }
}

.bottom-text {
  color: rgba(26, 15, 54, 0.7);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
  padding: 0 20px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .bottom-text {
    font-size: 15px;
  }
  .bottom-text br {
    display: none;
  }
}

.modal-content {
  border-radius: 1.25rem;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.modal-header {
  border-bottom: none;
  padding: 1.5rem 1.5rem 0.5rem;
}
.modal-header .modal-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1d1d1f;
  letter-spacing: -0.02em;
}
.modal-header .btn-close {
  opacity: 1;
  background: none;
  position: relative;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.modal-header .btn-close::before {
  content: "\f00d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.1rem;
  color: #86868b;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal-header .btn-close:hover {
  background-color: rgba(0, 0, 0, 0.05);
  transform: scale(1.1);
}

.modal-body {
  padding: 1rem 1.5rem 2rem;
}

.share-icons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  padding: 0.5rem;
}

.share-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #00539c;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.share-icon:hover {
  transform: translateY(-3px);
}
.share-icon i {
  font-size: 1.4rem;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  border-radius: 50%;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.share-icon span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #1d1d1f;
}
.share-icon.email i {
  color: #ea4335;
}
.share-icon.email i:hover {
  background-color: rgba(234, 67, 53, 0.1);
}
.share-icon.whatsapp i {
  color: #25d366;
}
.share-icon.whatsapp i:hover {
  background-color: rgba(37, 211, 102, 0.1);
}
.share-icon.facebook i {
  color: #1877f2;
}
.share-icon.facebook i:hover {
  background-color: rgba(24, 119, 242, 0.1);
}
.share-icon.twitter i {
  color: #000000;
}
.share-icon.twitter i:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.share-icon.linkedin i {
  color: #0a66c2;
}
.share-icon.linkedin i:hover {
  background-color: rgba(10, 102, 194, 0.1);
}

.link-section .section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.copy-link {
  display: flex;
  gap: 0.75rem;
  background-color: #f0f0f0;
  border-radius: 1rem;
  padding: 0.75rem;
  transition: all 0.3s ease;
}
.copy-link.copied {
  background-color: rgba(52, 199, 89, 0.1);
}
.copy-link .form-control {
  border: none;
  background: transparent;
  font-size: 0.95rem;
  color: #1d1d1f;
  padding: 0.5rem 0.75rem;
}
.copy-link .form-control:focus {
  box-shadow: none;
}
.copy-link .form-control::-moz-selection {
  background-color: rgba(0, 83, 156, 0.2);
}
.copy-link .form-control::selection {
  background-color: rgba(0, 83, 156, 0.2);
}
.copy-link .copy-button {
  background: #fff;
  border: none;
  border-radius: 0.75rem;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.copy-link .copy-button:hover {
  transform: scale(1.05);
  background-color: #fafafa;
}
.copy-link .copy-button:active {
  transform: scale(0.95);
}
.copy-link .copy-button i {
  color: #00539c;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
.copy-link .copy-button.copied {
  background-color: #34c759;
}
.copy-link .copy-button.copied i {
  color: #fff;
}

.modal.fade .modal-dialog {
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.show .modal-dialog {
  transform: scale(1);
  opacity: 1;
}/*# sourceMappingURL=video-section.css.map */