.main-content-new {
  padding-top: 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #46A2DA;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  background: rgba(70, 162, 218, 0.1);
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title-new {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #043F6D;
  margin-bottom: 2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-button-wrapper {
  text-align: center;
  margin-top: 3rem;
}

.section-button-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #043F6D 0%, #065b9e 50%, #46A2DA 100%);
  color: #F9F9F9 !important;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(46, 134, 217, 0.3);
}
.section-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 134, 217, 0.3);
}
.section-button-primary:hover i {
  transform: translateX(4px);
}
.section-button-primary i {
  transition: transform 0.3s ease;
}

.header-new {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(4, 63, 109, 0.1);
  padding: 0;
  transition: padding 0.3s ease, transform 0.3s ease;
  width: 100%;
}
@media (max-width: 768px) {
  .header-new.header-shrink {
    transform: translateY(-15%);
  }
  .header-new.header-shrink .header-inner-new {
    padding: 0.5rem 1rem;
  }
  .header-new.header-shrink .header-logo-link img {
    height: 35px;
  }
  .header-new.header-shrink .mobile-menu-toggle {
    transform: scale(0.85);
  }
}

.header-inner-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: padding 0.3s ease;
}
@media (max-width: 1024px) {
  .header-inner-new {
    gap: 1rem;
    padding: 1rem 1.5rem;
  }
}

.header-logo-new {
  flex-shrink: 0;
}

.header-logo-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  text-decoration: none;
}
.header-logo-link img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}
.header-logo-link:hover img {
  transform: scale(1.05);
}

.header-tagline-new {
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
  color: #909395;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .header-tagline-new {
    display: none;
  }
}

.header-nav-new {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
@media (max-width: 1024px) {
  .header-nav-new {
    display: none;
  }
}

.header-top-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

.header-buttons-new {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-menu-grid {
  display: flex;
  justify-content: flex-end;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  width: 100%;
}
@media (max-width: 1200px) {
  .header-menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.header-user-info-new {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
}
.header-user-info-new .user-greeting {
  color: #043F6D;
  font-weight: 500;
}

.header-link-new {
  color: #5D6062 !important;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}
.header-link-new:hover {
  color: #043F6D !important;
}
.header-link-new i {
  margin-right: 0.25rem;
}

.header-menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.75rem 0.5rem;
  color: #043F6D !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1.3;
  transition: all 0.2s ease;
  position: relative;
  border-radius: 8px;
  background: rgba(70, 162, 218, 0.03);
}
.header-menu-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(70, 162, 218, 0.1);
  transition: height 0.3s ease;
  border-radius: 8px;
  z-index: -1;
}
.header-menu-item:hover {
  color: #46A2DA !important;
}
.header-menu-item:hover::after {
  height: 100%;
}

.btn-header-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  background: linear-gradient(135deg, #EB4878 0%, #f07197 100%);
  color: #F9F9F9 !important;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(235, 72, 120, 0.25);
  white-space: nowrap;
}
.btn-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(235, 72, 120, 0.35);
}
.btn-header-cta i {
  font-size: 0.9rem;
}

.btn-header-mypage,
.btn-header-login {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  background: #F9F9F9;
  border: 2px solid #043F6D;
  color: #043F6D !important;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.btn-header-mypage:hover,
.btn-header-login:hover {
  background: #043F6D;
  color: #F9F9F9 !important;
  transform: translateY(-2px);
}
.btn-header-mypage i,
.btn-header-login i {
  font-size: 0.9rem;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: transform 0.3s ease;
  z-index: 1002;
}
@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #043F6D;
  border-radius: 2px;
  transition: all 0.2s ease;
}
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav-new {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #F9F9F9;
  flex-direction: column;
  gap: 0;
  padding-top: 80px;
  overflow-y: auto;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
@media (max-width: 1024px) {
  .mobile-nav-new {
    display: flex;
  }
  .mobile-nav-new.active {
    transform: translateX(0);
  }
}

.mobile-nav-link {
  padding: 1rem 2rem;
  color: #043F6D !important;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(4, 63, 109, 0.05);
  transition: all 0.2s ease;
}
.mobile-nav-link:hover {
  background: rgba(70, 162, 218, 0.05);
  color: #46A2DA !important;
}
.mobile-nav-link:last-child {
  border-bottom: none;
}

.hero-section-new {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2rem;
}

.hero-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #043F6D 0%, #065b9e 50%, #46A2DA 100%);
  opacity: 0.25;
  z-index: 1;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

.hero-overlay-new {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(4, 63, 109, 0.35) 0%, rgba(70, 162, 218, 0.15) 100%);
  z-index: 2;
}

.hero-content-new {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-badge-wrapper {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: #F9F9F9;
  font-weight: 600;
  font-size: 0.9rem;
}
.hero-badge i {
  color: #F5A100;
}

.hero-meta-new {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-title-new {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  color: #F9F9F9;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 4px 20px rgba(4, 63, 109, 0.4);
}
@media (min-width: 768px) {
  .hero-title-new .mobile-break {
    display: none;
  }
}

.hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.15rem 2.75rem;
  background: linear-gradient(135deg, #EB4878 0%, #f07197 100%);
  color: #F9F9F9 !important;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(235, 72, 120, 0.35);
}
.hero-cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(235, 72, 120, 0.45);
}
.hero-cta-primary:hover i {
  transform: translateX(5px);
}
.hero-cta-primary i {
  transition: transform 0.3s ease;
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.15rem 2.75rem;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #F9F9F9 !important;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
@media (max-width: 768px) {
  .scroll-indicator {
    display: none;
  }
}

.scroll-arrow {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 25px;
  position: relative;
}
.scroll-arrow::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #F9F9F9;
  border-radius: 50%;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
  }
}
.introduction-section-new {
  padding: 6rem 2rem;
  background: #F9F9F9;
}

.introduction-container-new {
  max-width: 900px;
  margin: 0 auto;
}

.introduction-content-new {
  text-align: center;
}

.introduction-text-new {
  font-size: 1.05rem;
  line-height: 2;
  color: #5D6062;
  text-align: left;
}

.idp-banner-section-new {
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(70, 162, 218, 0.05) 0%, rgba(4, 63, 109, 0.05) 100%);
}

.idp-banner-container-new {
  max-width: 600px;
  margin: 0 auto;
}

.idp-banner-link-wrapper {
  display: block;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 16px;
  padding: 2rem;
}
.idp-banner-link-wrapper:hover {
  background: rgba(70, 162, 218, 0.08);
  transform: translateY(-3px);
}
.idp-banner-link-wrapper:hover .idp-banner-image-new {
  transform: scale(1.08);
}
.idp-banner-link-wrapper:hover .idp-banner-text-new {
  color: #043F6D;
}

.idp-banner-content-new {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.idp-banner-image-new {
  max-width: 200px;
  height: auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.idp-banner-text-new {
  font-size: 0.9rem;
  color: #909395;
  line-height: 1.6;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-grid-section-new {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #F9F9F9 0%, rgb(249, 249, 249) 100%);
}

.article-container-new {
  max-width: 1400px;
  margin: 0 auto;
}

.article-header-new {
  text-align: center;
  margin-bottom: 4rem;
}

.article-count-display-new {
  margin-bottom: 3rem;
  text-align: center;
}

.article-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: #F9F9F9;
  border: 2px solid rgba(70, 162, 218, 0.2);
  border-radius: 50px;
  color: #043F6D;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(4, 63, 109, 0.08);
  margin-bottom: 3rem;
  max-width: 100%;
}
.article-count-badge i {
  color: #46A2DA;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.article-count-badge .count-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #EB4878;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .article-count-badge {
    font-size: 1rem;
    padding: 0.9rem 1.75rem;
    gap: 0.65rem;
  }
  .article-count-badge i {
    font-size: 1.15rem;
  }
  .article-count-badge .count-number {
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  .article-count-badge {
    font-size: 0.9rem;
    padding: 0.8rem 1.25rem;
    gap: 0.5rem;
  }
  .article-count-badge i {
    font-size: 1rem;
  }
  .article-count-badge .count-number {
    font-size: 1.2rem;
  }
}
@media (max-width: 360px) {
  .article-count-badge {
    font-size: 0.85rem;
    padding: 0.7rem 1rem;
  }
  .article-count-badge i {
    font-size: 0.95rem;
  }
  .article-count-badge .count-number {
    font-size: 1.1rem;
  }
}

.article-grid-new {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(70, 162, 218, 0.3) rgba(70, 162, 218, 0.1);
  padding-bottom: 1rem;
}
.article-grid-new::-webkit-scrollbar {
  height: 8px;
}
.article-grid-new::-webkit-scrollbar-track {
  background: rgba(70, 162, 218, 0.1);
  border-radius: 10px;
}
.article-grid-new::-webkit-scrollbar-thumb {
  background: rgba(70, 162, 218, 0.3);
  border-radius: 10px;
}
.article-grid-new::-webkit-scrollbar-thumb:hover {
  background: rgba(70, 162, 218, 0.5);
}
@media (max-width: 768px) {
  .article-grid-new {
    gap: 1.5rem;
  }
}

.article-card-new {
  background: #F9F9F9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(4, 63, 109, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  min-width: 320px;
  max-width: 320px;
  flex-shrink: 0;
}
.article-card-new.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}
@media (max-width: 768px) {
  .article-card-new {
    min-width: 280px;
    max-width: 280px;
  }
}
.article-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(4, 63, 109, 0.15);
}
.article-card-new:hover .article-card-image {
  transform: scale(1.1);
}
.article-card-new:hover .article-card-link {
  background: #043F6D;
  color: #F9F9F9 !important;
}
.article-card-new:hover .article-card-link i {
  transform: translateX(5px);
}

.article-card-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.article-card-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}

.article-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}

.article-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-card-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.article-category-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, #043F6D 0%, #46A2DA 100%);
  color: #F9F9F9 !important;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(4, 63, 109, 0.15);
}
.article-category-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(4, 63, 109, 0.25);
}

.article-date-text {
  font-size: 0.75rem;
  color: rgba(102, 102, 102, 0.6);
  font-weight: 500;
}

.article-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #043F6D;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  min-height: 2.8rem;
}

.article-card-excerpt {
  font-size: 0.9rem;
  color: #5D6062;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.article-card-link {
  display: inline-flex;
  margin: 0 auto;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #F9F9F9;
  border: 2px solid #043F6D;
  color: #043F6D !important;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start;
}
.article-card-link i {
  transition: transform 0.3s ease;
}

.course-section-new {
  padding: 6rem 2rem;
  background: #F9F9F9;
}

.course-container-new {
  max-width: 1400px;
  margin: 0 auto;
}

.course-header-new {
  text-align: center;
  margin-bottom: 4rem;
}

.course-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .course-grid-new {
    grid-template-columns: 1fr;
  }
}

.course-card-new {
  background: #F9F9F9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(4, 63, 109, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(4, 63, 109, 0.08);
  opacity: 0;
  transform: translateY(20px);
}
.course-card-new.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}
.course-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(4, 63, 109, 0.15);
}
.course-card-new:hover .course-card-image {
  transform: scale(1.15);
}
.course-card-new:hover .course-card-label {
  background: #065b9e;
}

.course-card-image-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, #45aaf8 0%, #f0f7fc 100%);
}

.course-card-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.6;
  transition: transform 0.6s ease, opacity 0.4s ease;
}

.course-card-label {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, #043F6D 0%, #065b9e 50%, #46A2DA 100%);
  color: #F9F9F9;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.course-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.course-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #043F6D;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.course-card-description {
  font-size: 0.95rem;
  color: #5D6062;
  line-height: 1.8;
  margin-bottom: 2rem;
  flex: 1;
}

.course-card-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #043F6D 0%, #065b9e 50%, #46A2DA 100%);
  color: #F9F9F9 !important;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start;
  box-shadow: 0 4px 15px rgba(46, 134, 217, 0.3);
}
.course-card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 134, 217, 0.3);
}
.course-card-button:hover i {
  transform: translateX(5px);
}
.course-card-button i {
  transition: transform 0.3s ease;
}

.story-section-new {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, rgb(249, 249, 249) 0%, #F9F9F9 100%);
}

.story-container-new {
  max-width: 1200px;
  margin: 0 auto;
}

.story-header-new {
  text-align: center;
  margin-bottom: 3rem;
}

.scroll-arrow-indicator {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 2rem 0 1.5rem;
  opacity: 0.6;
  transition: opacity 0.4s ease;
}
.scroll-arrow-indicator i {
  font-size: 1.5rem;
  color: #46A2DA;
  animation: scrollWave 3s ease-in-out infinite;
}
.scroll-arrow-indicator i:nth-child(1) {
  animation-delay: 0s;
  margin-right: -5px;
}
.scroll-arrow-indicator i:nth-child(2) {
  animation-delay: 0.3s;
}
@media (max-width: 768px) {
  .scroll-arrow-indicator {
    margin: 1.5rem 0 1rem;
  }
  .scroll-arrow-indicator i {
    font-size: 1.2rem;
  }
}

@keyframes scrollWave {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.4;
  }
  50% {
    transform: translateX(8px);
    opacity: 1;
  }
}
.story-scroll-container {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(70, 162, 218, 0.3) rgba(70, 162, 218, 0.1);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
.story-scroll-container::-webkit-scrollbar {
  height: 8px;
}
.story-scroll-container::-webkit-scrollbar-track {
  background: rgba(70, 162, 218, 0.1);
  border-radius: 10px;
}
.story-scroll-container::-webkit-scrollbar-thumb {
  background: rgba(70, 162, 218, 0.3);
  border-radius: 10px;
}
.story-scroll-container::-webkit-scrollbar-thumb:hover {
  background: rgba(70, 162, 218, 0.5);
}
@media (max-width: 768px) {
  .story-scroll-container {
    gap: 1.5rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.story-card-new {
  background: #F9F9F9;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(4, 63, 109, 0.08);
  border: 1px solid rgba(4, 63, 109, 0.08);
  opacity: 0;
  min-width: 600px;
  max-width: 600px;
  flex-shrink: 0;
}
.story-card-new.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}
@media (max-width: 768px) {
  .story-card-new {
    min-width: 85vw;
    max-width: 85vw;
    padding: 2rem;
  }
}

.story-profile {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(70, 162, 218, 0.1);
}
@media (max-width: 480px) {
  .story-profile {
    flex-direction: column;
    text-align: center;
  }
}

.story-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid rgba(70, 162, 218, 0.2);
  box-shadow: 0 4px 12px rgba(4, 63, 109, 0.15);
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .story-avatar {
    width: 70px;
    height: 70px;
  }
}

.story-avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(70, 162, 218, 0.15) 0%, rgba(4, 63, 109, 0.15) 100%);
  border: 3px solid rgba(70, 162, 218, 0.3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #043F6D;
}
@media (max-width: 480px) {
  .story-avatar-placeholder {
    width: 70px;
    height: 70px;
    font-size: 1rem;
  }
}

.story-info {
  flex: 1;
}

.story-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: #043F6D;
  margin-bottom: 0.5rem;
}
@media (max-width: 480px) {
  .story-name {
    font-size: 1.2rem;
  }
}

.story-achievement-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, #043F6D 0%, #065b9e 100%);
  color: #F9F9F9;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  box-shadow: rgba(46, 134, 217, 0.3) 0px 4px 15px;
}
@media (max-width: 480px) {
  .story-achievement-badge {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
  }
}

.story-scores {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 480px) {
  .story-scores {
    grid-template-columns: repeat(2, 1fr);
  }
}

.score-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.score-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  border: 2px solid #1493f6;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(4, 63, 109, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.score-image:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(4, 63, 109, 0.25);
}

.score-change {
  font-size: 0.9rem;
  font-weight: 600;
  color: #043F6D;
  text-align: center;
}
@media (max-width: 480px) {
  .score-change {
    font-size: 0.85rem;
  }
}

.story-text p {
  font-size: 1rem;
  line-height: 2;
  color: #767a7c;
  margin-bottom: 1.5rem;
  text-align: left;
}
.story-text p:last-child {
  margin-bottom: 0;
}
.story-text .story-excerpt {
  margin-bottom: 1rem !important;
}
.story-text .story-full-content {
  margin-top: 1rem;
}

.story-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #F9F9F9;
  border: 2px solid #043F6D;
  color: #043F6D !important;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  margin-top: 1rem;
}
.story-read-more:hover {
  background: #043F6D;
  color: #F9F9F9 !important;
  transform: translateY(-2px);
}
.story-read-more i {
  transition: transform 0.3s ease;
}
.story-read-more.expanded i {
  transform: rotate(180deg);
}

.features-section-new {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(70, 162, 218, 0.03) 0%, rgba(4, 63, 109, 0.03) 100%);
}

.features-container-new {
  max-width: 1400px;
  margin: 0 auto;
}

.features-header-new {
  text-align: center;
  margin-bottom: 4rem;
}

.features-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .features-grid-new {
    grid-template-columns: 1fr;
  }
}

.feature-card-new {
  background: #F9F9F9;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(4, 63, 109, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(4, 63, 109, 0.08);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}
.feature-card-new.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}
.feature-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(4, 63, 109, 0.15);
}
.feature-card-new:hover .feature-icon-wrapper {
  transform: scale(1.1);
}
.feature-card-new:hover .feature-icon-new {
  background: linear-gradient(135deg, #065b9e 0%, #46A2DA 100%);
}

.feature-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  transition: transform 0.4s ease;
}

.feature-icon-new {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #043F6D 0%, #065b9e 50%, #46A2DA 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(4, 63, 109, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-icon-new i {
  font-size: 2rem;
  color: #F9F9F9;
}

.feature-title-new {
  font-size: 1.25rem;
  font-weight: 800;
  color: #043F6D;
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.feature-description-new {
  font-size: 0.95rem;
  color: #5D6062;
  line-height: 1.8;
}

.idp-certification-new {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .idp-certification-new {
    gap: 2rem;
  }
}

.idp-cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.idp-cert-image {
  max-width: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(4, 63, 109, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.idp-cert-image:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 30px rgba(4, 63, 109, 0.12);
}

.idp-cert-name {
  font-size: 0.9rem;
  color: #5D6062;
  text-align: center;
  letter-spacing: 0.02em;
}

.oni-section-new {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgb(249, 249, 249) 0%, #F9F9F9 50%, rgb(249, 249, 249) 100%);
  position: relative;
}

.oni-container-new {
  max-width: 1200px;
  margin: 0 auto;
  background: #F9F9F9;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(4, 63, 109, 0.08);
  border: 1px solid rgba(4, 63, 109, 0.08);
}
@media (max-width: 768px) {
  .oni-container-new {
    padding: 2rem 1.5rem;
  }
}

.oni-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.oni-badge {
  padding: 0.75rem 1.75rem;
  background: linear-gradient(135deg, #043F6D 0%, #065b9e 50%, #46A2DA 100%);
  color: #F9F9F9;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(4, 63, 109, 0.2);
  position: relative;
  overflow: hidden;
}
.oni-badge::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.oni-badge:hover::before {
  width: 300px;
  height: 300px;
}
.oni-badge i {
  color: #F5A100;
}

.oni-content-new {
  display: flex;
  justify-content: center;
  align-items: center;
}

.oni-highlight-box {
  background: linear-gradient(135deg, rgba(70, 162, 218, 0.06) 0%, rgba(4, 63, 109, 0.03) 100%);
  border: 2px solid rgba(70, 162, 218, 0.15);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: visible;
  box-shadow: 0 2px 12px rgba(4, 63, 109, 0.06);
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .oni-highlight-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.oni-book-thumbnail {
  flex-shrink: 0;
  width: 140px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(4, 63, 109, 0.15);
  transform: rotate(-5deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  margin-left: -1rem;
  margin-top: -0.5rem;
}
.oni-book-thumbnail:hover {
  transform: rotate(-2deg) scale(1.05);
  box-shadow: 0 12px 30px rgba(4, 63, 109, 0.25);
}
@media (max-width: 768px) {
  .oni-book-thumbnail {
    width: 120px;
    margin-left: 0;
    margin-top: 0;
    transform: rotate(-3deg);
  }
}

.oni-book-content {
  flex: 1;
}
.oni-book-content p {
  margin-bottom: 0 !important;
  line-height: 1.9;
}

.oni-book-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #043F6D;
  margin-bottom: 1rem;
}
.oni-book-title i {
  color: #46A2DA;
  font-size: 1.3rem;
}
@media (max-width: 1024px) {
  .oni-book-title {
    justify-content: center;
  }
}

.oni-text-new p {
  font-size: 1rem;
  line-height: 2;
  color: #5D6062;
  margin-bottom: 1.5rem;
  text-align: left;
}
@media (max-width: 1024px) {
  .oni-text-new p {
    text-align: center;
  }
}

.oni-button-new {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: #F9F9F9;
  border: 2px solid #043F6D;
  color: #043F6D !important;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 1rem;
}
.oni-button-new:hover {
  background: #043F6D;
  color: #F9F9F9 !important;
  transform: translateY(-2px);
}
.oni-button-new:hover i {
  transform: translateX(5px);
}
.oni-button-new i {
  transition: transform 0.3s ease;
}

.founder-section-new {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgb(249, 249, 249) 0%, #F9F9F9 100%);
}

.founder-container-new {
  max-width: 900px;
  margin: 0 auto;
}

.founder-content-new {
  text-align: center;
}

.founder-story-new {
  background: #F9F9F9;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(4, 63, 109, 0.08);
  border: 1px solid rgba(4, 63, 109, 0.08);
  overflow: hidden;
}
.founder-story-new p {
  font-size: 1rem;
  line-height: 2;
  color: #5D6062;
  margin-bottom: 1.5rem;
  text-align: left;
}
.founder-story-new p:last-of-type {
  margin-bottom: 2rem;
}

.founder-story-image {
  float: right;
  width: 280px;
  height: auto;
  margin: 0 0 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(4, 63, 109, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: rotate(2deg);
}
.founder-story-image:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 0 12px 40px rgba(4, 63, 109, 0.15);
}
@media (max-width: 768px) {
  .founder-story-image {
    float: none;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 1.5rem auto;
    display: block;
    transform: rotate(0deg);
  }
}

.founder-signature-new {
  text-align: right;
  padding: 2rem 0 0;
  border-top: 2px solid rgba(4, 63, 109, 0.1);
}
.founder-signature-new p {
  font-size: 1rem;
  line-height: 1.8;
  color: #043F6D;
  margin-bottom: 0 !important;
  text-align: right !important;
}
.founder-signature-new p strong {
  font-size: 1.3rem;
  font-weight: 800;
  display: block;
  margin-bottom: 0.5rem;
}

.cta-section-new {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #043F6D 0%, #065b9e 50%, #46A2DA 100%);
  position: relative;
  overflow: hidden;
}
.cta-section-new::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(5%, 5%) scale(1.1);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}
.cta-container-new {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content-new {
  text-align: center;
}

.cta-title-new {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 900;
  color: #F9F9F9;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-subtitle-new {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.cta-button-new {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 3.5rem;
  background: #F9F9F9;
  color: #043F6D !important;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.cta-button-new:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.cta-button-new:hover i {
  transform: translateX(5px);
}
.cta-button-new i {
  transition: transform 0.3s ease;
}

.ask-expert-section-new {
  padding: 0rem 2rem 6rem;
  background: #F9F9F9;
}

.ask-expert-box-new {
  background: linear-gradient(135deg, rgb(255, 250, 252) 0%, rgb(255, 255, 255) 100%);
  border: 2px solid rgba(235, 72, 120, 0.2);
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 4px 20px rgba(235, 72, 120, 0.12);
  transition: all 0.3s ease;
  overflow: hidden;
}
.ask-expert-box-new:hover {
  box-shadow: 0 6px 25px rgba(235, 72, 120, 0.2);
  transform: translateY(-2px);
  border-color: rgba(235, 72, 120, 0.35);
}

.ask-expert-compact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 3rem;
}
@media (max-width: 1024px) {
  .ask-expert-compact {
    padding: 1.5rem 2rem;
  }
}
@media (max-width: 768px) {
  .ask-expert-compact {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
  }
}

.ask-expert-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(235, 72, 120, 0.3);
  border: 3px solid rgba(235, 72, 120, 0.2);
}
.ask-expert-icon .ask-expert-avatar {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .ask-expert-icon {
    width: 60px;
    height: 60px;
  }
}

.ask-expert-text {
  flex: 1;
}
.ask-expert-text h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #EB4878 !important;
  margin: 0 0 0.5rem 0 !important;
  padding: 0 !important;
  border: none !important;
}
@media (max-width: 768px) {
  .ask-expert-text h5 {
    font-size: 1.1rem;
  }
}
.ask-expert-text p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #5D6062;
  margin: 0 !important;
}
@media (max-width: 768px) {
  .ask-expert-text p {
    font-size: 0.85rem;
  }
}

.counselling-button-compact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: linear-gradient(135deg, #EB4878 0%, #f07197 100%);
  color: #F9F9F9 !important;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(235, 72, 120, 0.3);
  white-space: nowrap;
  flex-shrink: 0;
}
.counselling-button-compact:hover {
  background: linear-gradient(135deg, #f07197 0%, #EB4878 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(235, 72, 120, 0.4);
  text-decoration: none;
  color: #F9F9F9 !important;
}
.counselling-button-compact:hover i {
  transform: translateX(3px);
}
.counselling-button-compact i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .counselling-button-compact {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}

.footer-new {
  background: #043F6D;
  color: #F9F9F9;
  padding: 4rem 2rem 2rem;
}

.footer-container-new {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer-grid-new {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-column-new h3 {
  margin-bottom: 1rem;
}

.footer-heading-new {
  font-size: 1.1rem;
  font-weight: 700;
  color: #F9F9F9;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-heading-spacer {
  margin-top: 2rem;
}

.footer-links-new {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links-new li {
  margin-bottom: 0.75rem;
}
.footer-links-new li a {
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  display: inline-block;
}
.footer-links-new li a:hover {
  color: #F9F9F9 !important;
  transform: translateX(5px);
}
.footer-links-new li a i {
  margin-right: 0.5rem;
  font-size: 0.85rem;
}
.footer-links-new li.footer-sub-link {
  margin-left: 1rem;
}
.footer-links-new li.footer-sub-link a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7) !important;
}

.footer-bottom-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  gap: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer-bottom-new {
    flex-direction: column;
    text-align: center;
  }
}

.footer-logo-new img {
  height: 40px;
  width: auto;
  opacity: 0.9;
}

.footer-copyright-new {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.footer-copyright-new p {
  margin: 0;
}

.footer-nav-mobile-new {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #F9F9F9;
  border-top: 1px solid rgba(4, 63, 109, 0.1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 0.5rem 0;
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.footer-nav-mobile-new.footer-hidden {
  transform: translateY(100%);
}
@media (max-width: 768px) {
  .footer-nav-mobile-new {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
}

.footer-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.5rem;
  color: #043F6D !important;
  text-decoration: none;
  transition: all 0.2s ease;
}
.footer-nav-item i {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}
.footer-nav-item span {
  font-size: 0.7rem;
  font-weight: 600;
}
.footer-nav-item:hover {
  background: rgba(70, 162, 218, 0.05);
  color: #46A2DA !important;
}

.footer-top-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.5rem;
  color: #EB4878 !important;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}
.footer-top-button i {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
  transition: transform 0.3s ease;
}
.footer-top-button span {
  font-size: 0.7rem;
  font-weight: 600;
}
.footer-top-button.visible i {
  animation: bounce 2s infinite;
}
.footer-top-button:hover {
  background: rgba(235, 72, 120, 0.05);
}

@media (max-width: 1024px) {
  .hero-section-new {
    min-height: 80vh;
  }
  .section-title-new {
    font-size: 2.5rem;
  }
  .course-grid-new,
  .features-grid-new {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .hero-title-new {
    font-size: 2.5rem;
  }
  .hero-cta-buttons {
    gap: 0.75rem;
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-buttons .hero-cta-primary,
  .hero-cta-buttons .hero-cta-secondary {
    width: 100%;
    justify-content: center;
  }
  .article-grid-new {
    gap: 1.5rem;
  }
  .story-card-new {
    padding: 2rem;
  }
  .oni-content-new {
    gap: 2rem;
  }
  .founder-story-new {
    padding: 2rem;
  }
  .main-content-new {
    padding-bottom: 70px;
  }
}
@media (max-width: 480px) {
  .hero-badge-wrapper {
    gap: 0.75rem;
  }
  .section-label {
    font-size: 0.7rem;
    padding: 0.4rem 1.2rem;
  }
  .section-title-new {
    font-size: 1.6rem;
  }
  .cta-title-new {
    font-size: 1.8rem;
  }
}/*# sourceMappingURL=top.css.map */