:root {
  --color-black: #0d0d0d;
  --color-gray-dark: #333333;
  --color-gray-medium: #7a7a7a;
  --color-gray-light: #f5f5f5;
  --font-main: 'Inter', sans-serif;
}

/* Academic Program Block Styles */
.program {
  padding: 100px 0;
  background-color: #fcfcfc;
  overflow: hidden;
}

.program__title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-black);
  margin-bottom: 0;
}

.program__intro {
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--color-gray-dark);
  max-width: 450px;
}

.program__card {
  background: #ffffff;
  border-radius: 40px;
  padding: 48px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.program__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.program__card--small {
  min-height: 250px;
  justify-content: space-between;
}

.program__card--large {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 280px;
}

.program__card-content {
  max-width: 65%;
  position: relative;
  z-index: 2;
}

.program__card-title {
  font-size: 1.425rem;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 24px;
  line-height: 1.2;
}

.program__card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-gray-medium);
  margin-bottom: 0;
}

.program__card-icon {
  flex: 0 0 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.program__card-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.1s linear;
}

/* Media Queries */
@media (max-width: 1200px) {
  .program__title {
    font-size: 2.8rem;
  }
}

@media (max-width: 991px) {
  .program__card--large {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .program__card-content {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .program__card-icon {
    align-self: flex-end;
    width: 100px;
    flex: 0 0 100px;
  }

  .program__header {
    text-align: center;
  }

  .program__intro {
    margin: 20px auto 0;
  }
}

@media (max-width: 576px) {
  .program {
    padding: 60px 0;
  }
  
  .program__title {
    font-size: 2.2rem;
  }

  .program__card {
    padding: 32px 24px;
    border-radius: 30px;
  }

  .program__card-title {
    font-size: 1.4rem;
  }
}