 * {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
}
.banner-container {
  display: flex;
  align-items: center;
  background: #0052cc;
  border-radius: 12px;
  padding: 72px;
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 463px;
}
.text-container {
  font-family: Inter;
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 608px;
}
.text-container .highlight {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  vertical-align: middle;
  text-transform: uppercase;
  color: #ffffff;
}
.text-container h2 {
  font-weight: 700;
  font-style: Bold;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #ffffff;
  margin: 0;
}
.text-container .description {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  vertical-align: middle;
  color: #ffffff;
  margin: 0;
}
.text-container button {
  width: 150px;
  height: 60px;
  border-radius: 6px;
  background: #ff6600;
  color: #ffffff;
  border: none;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  vertical-align: middle;
  text-decoration: none;
  cursor: pointer;
}
.text-container button:hover {
  background: #e15d05;
}
.banner-image {
  position: absolute;
  right: -60px;
  bottom: -20px;
  max-width: 561px;
  height: 416px;
  width: 100%;
  clip-path: polygon(30% 0, 100% 0%, 70% 100%, 0% 100%);
}
.breadcrumb {
  font-family: Inter;
  font-size: 15px;
  display: flex;
  align-items: center;
  color: #444;
width:100%;
margin-block: 30px;
}
.breadcrumb p {
margin:0;
}
.breadcrumb a {
  text-decoration: none;
  color: #0077cc;
  font-weight: 500;
  transition: color 0.2s ease;
}
.breadcrumb a:hover {
  color: #005fa3;
  text-decoration: underline;
}
.breadcrumb .separator {
  margin: 0 8px;
  color: #aaa;
  font-size: 16px;
}
.breadcrumb .current {
  font-weight: 500;
  color: #222;
}
.blog-layout {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  font-family: Inter;
  width: 100%;
}
.blog-content {
  font-family: Inter;
  color: #333;
  max-width: 750px;
  line-height: 1.7;
}
.blog-content h3 {
  font-weight: 700;
  font-style: Bold;
  font-size: 30px;
  line-height: 36px;
  color: #000000;
  margin: 0 0 20px 0;
}
.program-card {
  width: 100%;
  background-color: #f9fafb;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  font-family: Inter;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}
.program-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2C64F7;
  color: white;
  font-weight: 600;
  padding: 12px 16px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.program-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-top: 1px solid #e0e0e0;
}
.program-item p{
  margin: 0;
}
.program-info strong {
  display: block;
  font-size: 16px;
  color: #333;
}
.program-info span {
  color: #666;
  font-size: 14px;
  margin-top: 2px;
}
.learn-more {
  display: inline-block;
  padding: 4px 12px;
  background-color: #fff;
  color: #ff6600;
  border: 1px solid #ff6600;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.learn-more:hover {
  background-color: #e15d05;
  color: #fff;
}
.student-support {
  max-width: 100%;
  margin: 40px auto;
}
.student-support h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 17px;
}
.support-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 24px 16px;
  text-align: center;
  transition: box-shadow 0.3s ease;
  height: 180px;
}
.support-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.icon {
  color: #e53935;
  margin-bottom: 10px;
}
.support-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  line-height: 24px;
}
.support-card p {
  font-size: 14px;
  color: #666;
  margin-block: 8px 0;
}
.cta-box {
  background-color: #2962ff;
  color: white;
  border-radius: 10px;
  padding: 40px 20px;
  text-align: center;
  max-width: 800px;
  margin: 40px auto 0;
  font-family: Inter;
  display: flex;
  flex-direction: column;
  align-items: center
}
.cta-box h2 {
  font-size: 22px;
  font-weight: bold;
  margin-block: 0 16px;
color: white !important;
line-height: 34px
}
.cta-box p {
  font-size: 15px;
  line-height: 1.6;
  margin-block: 0 24px;
  max-width: 500px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.3s ease;
}
.btn-white {
  background-color: white;
  color: #2C64F7;
  border: 1px solid white;
}
.btn-white:hover {
  background-color: #e3edff;
  color: #2C64F7;
}
.btn-red {
  background-color: #ff6600;
  color: white;
  border: none;
}
.btn-red:hover {
  background-color: #e15d05;
}
.sidebar {
  width: 364px;
  min-width: 270px;
  font-family: Inter;
}
.categories-box {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.category-header {
  background-color: #E33F36;
  color: white;
  font-weight: bold;
  padding: 12px 16px;
}
.categories-box ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.categories-box ul li {
  border-top: 1px solid #E5E7EB;
margin:0;
}
.categories-box ul li a {
  display: block;
  padding: 15px;
  color: #2C64F7;
  text-decoration: none;
  background-color: #E6F0FF80;
font-size: 14px;
}
.categories-box ul li:nth-child(even) a {
    background-color: #ffffff;
}
.cta-box-small {
  background: linear-gradient(105.47deg, #0052CC 39.16%, #002966 155.6%);
  color: white;
  border-radius: 10px;
  padding: 20px;
  text-align: left;
}
.cta-box-small h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}
.cta-box-small p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 20px;
}
.apply-btn {
  display: inline-block;
  padding: 10px 14px;
  background-color: #ff6600;
  color: white;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.apply-btn, .btn-red {
color: white !important;
}
.apply-btn:hover {
  background-color: #e15d05;
}
@media screen and (max-width: 1024px) {
  .banner-container {
    flex-direction: column;
    height: auto;
    padding: 40px 20px;
  }
  .banner-image {
    position: static;
    clip-path: none;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .blog-layout {
    flex-direction: column;
    gap: 30px;
  }
  .sidebar {
    width: 100%;
  }
  .support-grid {
    grid-template-columns: 1fr;
  }
  .cta-box {
    padding: 24px;
  }
  .text-container h2 {
    font-size: 32px;
    line-height: 38px;
  }
  .text-container .description {
    font-size: 16px;
    line-height: 24px;
  }
  .text-container button {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .text-container h2 {
    font-size: 24px;
    line-height: 30px;
  }
  .text-container .description,
  .cta-box p {
    font-size: 14px;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
}