.tab-buttons {
  display: flex;
  position: relative;
  flex-direction: column;
}
.tab-buttons button {
  padding: 20px 15px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 18px;
  transition: color 0.3s ease;
  border-bottom: 2px solid #cfcfcf;
  color: #86868B;
  position: relative;
  text-align: left;
}

.tab-buttons button.active {
  color: #23559b;
  border-bottom-color:#23559B ;
}

/* Movable underline */
.tab-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: #23559b;
  transition: all 0.3s ease;
}

.tab-content {
  display: none;
  padding:20px;
  animation: fadeIn 0.4s ease-in-out;

}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.tab-container{
    display: flex;
    gap: 30px;
}
.tab-content-box {
    flex: 1;
    z-index: 1;
}
.over-view{
    /* background-color: #fff; */
    border-radius: 20px;
    padding: 40px;
}
.tab-content img{
    width: 100%;
    border-radius: 20px;
    display: block;
}
.over-view img{
    width: 100%;
    height: 496px;
    border-radius: 20px;
    object-fit: cover;
    object-position: top;
    display: block;
    margin-bottom: 15px;
}
.tab-content-box h2 {
    margin-top: 15px;
    font-weight: 600;
    font-size: 24px !important;
    line-height: 32px;
    letter-spacing: -0.28px;
    color: #23559b;
    margin-bottom: 15px;
}
.tab-content-box h3 {
    margin-top: 15px;
    font-weight: 600;
    font-size: 20px !important;
    line-height: 28px;
    letter-spacing: -0.28px;
    color: #23559b;
    margin-bottom: 15px;
}
.tab-content-box h4 {
    margin-top: 15px;
    font-weight: 600;
    font-size: 18px !important;
    line-height: 24px;
    letter-spacing: -0.28px;
    color: #23559b;
    margin-bottom: 15px;
}
.tab-content-box table {
    width: 100%;
    margin-top: 25px;
    margin-bottom: 25px;
    background: #fff;
    border-radius: 12px;
    text-align: center;
    border-collapse: collapse;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    overflow: hidden;
}
.tab-content-box  table tr {
  border-bottom: 1px solid #cfcfcf;
}
.tab-content-box  table tr:last-child {
  border-bottom: none;
}
.tab-content-box  table tr th {
  padding: 20px 15px;
  background-color: #4a4a4a3b;
  color: #4a4a4a;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.28px;
  font-weight: 600;
  text-align: left;
}
.tab-content-box  table {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  overflow: hidden;
}

.tab-content-box  table tr td {
  padding: 20px 15px;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.28px;
  text-align: left;
}
.tab-content-box  ul li {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.28px;
  list-style-position: inside;
  color: #000000;
}
.tab-content-box  ol li {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.28px;
  list-style-position: inside;
  color: #000000;
}
.tab-content-box  a {
  color: #23559b;
  text-underline-offset: 3px;
  text-decoration: underline 2px rgba(42, 46, 109, 0.12);
}
.tab-content-box  a:hover {
  text-decoration: underline rgb(35, 85, 155) !important;
}
.tab-content-box  iframe {
  width: 100%;
  height: 600px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.events-card{
    background-color: #ffff;
    box-shadow: 2px 4px 12px 0px #00000014;
    border-radius: 20px;
    padding: 10px;
    margin-bottom: 25px;
    display: flex;
}
.event-date {
    background-color: #23559b;
    color: white;
    padding: 30px 20px;
    text-align: center;
    flex-shrink: 0;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: 150px;
    border-radius: 20px;
}
.event-date .day {
    font-size: 20px;
    font-weight: bold;
}
.event-date .weekday {
    font-size: 16px;
}
.news-section__article-content {
    padding: 0px 20px;
    flex-grow: 1;
}
.news-section__article-date {
    font-size: 14px;
    color: #23569b;
    padding: 10px 0px;
    font-weight: 700;
}
.news-section__article-title {
    font-size: 20px;
    font-weight: 600;
    color: #2D2525;
    padding: 0;
    line-height: 24px;
}
.news-section__article-snippet {
    font-size: 16px;
    color: #2D2525;
    line-height: 1.6;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-section__read-more {
    font-size: 16px;
    color: #23559b;
    font-weight: 600;
    text-decoration: none;
    float: left;
    text-decoration: underline;
    margin-top: 20px;
    margin-bottom: 30px;
}
@media (max-width:991px){
  .tab-container{
    flex-direction: column;
  }
  .tab-buttons{
    flex-direction: row;
    overflow-x: auto;
    white-space: nowrap;
    gap: 30px;
    padding: 0;
  }
  .tab-buttons::-webkit-scrollbar{
    display: none;
  }
  .tab-content{
    padding: 0;
  }
  .over-view{
    padding: 15px;
  }
}
@media (max-width:767px){
  .events-card{
    display: block;
  }
  .over-view img{
    height: auto;
  }
  .news-section__read-more{
    float: none;
    margin-top: 10px;
  }
  .news-events{
    padding-top: 0 !important;
  }
}