#research-experience .hero-section {
  background-color: #1a1a1a;
  padding: 160px 20px 90px 20px;
  border-radius: 0 0 30px 30px;
}
@media screen and (max-width: 1024px) {
  #research-experience .hero-section {
    padding: 130px 20px 40px 20px;
  }
}
@media screen and (max-width: 768px) {
  #research-experience .hero-section {
    padding: 100px 20px 30px 20px;
  }
}
#research-experience .hero-section .container {
  max-width: 1130px;
  margin: 0 auto;
}
#research-experience .hero-section .hero-content {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 968px) {
  #research-experience .hero-section .hero-content {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 40px;
  }
}
#research-experience .hero-section .hero-content .hero-text h1 {
  font-family: "outfit", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #research-experience .hero-section .hero-content .hero-text h1 {
    font-size: 32px;
    line-height: 38px;
  }
}
#research-experience .hero-section .hero-content .hero-text h1 .highlight {
  color: #ff9800;
}
#research-experience .hero-section .hero-content .hero-text p {
  font-family: "outfit", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #cccccc;
  line-height: 30px;
  margin-bottom: 35px;
  max-width: 600px;
}
@media screen and (max-width: 768px) {
  #research-experience .hero-section .hero-content .hero-text p {
    font-size: 14px;
    margin-left: auto;
    margin-right: auto;
  }
}
#research-experience .hero-section .hero-content .hero-text .cta-button {
  font-family: "SF Pro Display", sans-serif;
  display: inline-block;
  background-color: #ffffff;
  color: #1a1a1a;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}
#research-experience .hero-section .hero-content .hero-text .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.3);
}
#research-experience .hero-section .hero-content .hero-image-wrapper {
  display: flex;
  align-items: center;
}
#research-experience .hero-section .hero-content .hero-image-wrapper .hero-image {
  width: 100%;
  max-width: 390px;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
}
#research-experience .research-section {
  background-color: #F8F8F8;
}
#research-experience .research-section .container {
  max-width: 1210px;
  margin: 0 auto;
  padding: 100px 20px;
}
@media screen and (max-width: 768px) {
  #research-experience .research-section .container {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 480px) {
  #research-experience .research-section .container {
    padding: 40px 20px;
  }
}
#research-experience .research-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}
#research-experience .research-section .section-header .main-title {
  font-family: "outfit", sans-serif;
  font-size: 64px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 16px;
  line-height: 78px;
}
@media (max-width: 768px) {
  #research-experience .research-section .section-header .main-title {
    font-size: 48px;
    line-height: 58px;
  }
}
@media screen and (max-width: 480px) {
  #research-experience .research-section .section-header .main-title {
    font-size: 36px;
    line-height: 44px;
  }
}
#research-experience .research-section .section-header .subtitle {
  font-family: "SF Pro Display", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: rgba(19, 23, 53, 0.6);
  max-width: 822px;
  margin: 0 auto;
}
#research-experience .research-section .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
  justify-content: start;
}
@media screen and (max-width: 1024px) {
  #research-experience .research-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media screen and (max-width: 768px) {
  #research-experience .research-section .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
#research-experience .research-section .features-grid .feature-card {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 24px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 480px) {
  #research-experience .research-section .features-grid .feature-card {
    padding: 20px;
  }
}
#research-experience .research-section .features-grid .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
#research-experience .research-section .features-grid .feature-card .badge {
  font-family: "outfit", sans-serif;
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #F57354;
  border: 1px solid rgba(255, 255, 255, 0.1019607843);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
}
#research-experience .research-section .features-grid .feature-card .icon-wrapper {
  margin: 0 0 24px;
}
#research-experience .research-section .features-grid .feature-card .feature-title {
  font-family: "outfit", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}
#research-experience .research-section .features-grid .feature-card .feature-description {
  font-family: "outfit", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.6);
}
#research-experience .partners-section {
  padding: 80px 20px;
}
@media screen and (max-width: 768px) {
  #research-experience .partners-section {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 480px) {
  #research-experience .partners-section {
    padding: 40px 20px;
  }
}
#research-experience .partners-section .partners-container {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #research-experience .partners-section .partners-container {
    flex-direction: column;
    gap: 60px;
  }
}
@media screen and (max-width: 480px) {
  #research-experience .partners-section .partners-container {
    gap: 30px;
  }
}
#research-experience .partners-section .content-left {
  flex: 1;
  max-width: 560px;
}
#research-experience .partners-section .content-left .section-title {
  font-family: "outfit", sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #062028;
  line-height: 1.2;
  margin-bottom: 28px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #research-experience .partners-section .content-left .section-title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media screen and (max-width: 480px) {
  #research-experience .partners-section .content-left .section-title {
    font-size: 28px;
    line-height: 38px;
  }
}
#research-experience .partners-section .content-left .section-description {
  font-family: "SF Pro Display", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #585858;
  margin-bottom: 28px;
}
#research-experience .partners-section .content-left .partners-avatars {
  display: flex;
  align-items: center;
  gap: 0;
}
#research-experience .partners-section .content-left .partners-avatars .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: -12px;
  position: relative;
  z-index: 1;
}
#research-experience .partners-section .content-left .partners-avatars .avatar:first-child {
  margin-left: 0;
  background-color: #D1EBEB;
}
#research-experience .partners-section .content-left .partners-avatars .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#research-experience .partners-section .content-left .partners-avatars .count-badge {
  margin-left: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 4px;
}
#research-experience .partners-section .visual-right {
  flex: 1;
}
#research-experience .gain-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 32px;
}
#research-experience .gain-container .gain-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64px;
  gap: 48px;
}
@media screen and (max-width: 1120px) {
  #research-experience .gain-container .gain-section {
    flex-direction: column-reverse;
    text-align: center;
    justify-content: center;
    gap: 30px;
  }
}
#research-experience .gain-container .gain-section .gain-content.content-2 {
  max-width: 610px;
  margin-left: auto;
}
#research-experience .gain-container .gain-section .gain-content h2 {
  font-family: "outfit", sans-serif;
  font-size: 14px;
  color: #000000;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  border: 1px solid #dcdcdc;
  padding: 9px 16px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #research-experience .gain-container .gain-section .gain-content h2 {
    font-size: 12px;
    padding: 7px 14px;
  }
}
#research-experience .gain-container .gain-section .gain-content h1 {
  font-family: "outfit", sans-serif;
  font-size: 64px;
  color: #000000;
  margin-bottom: 30px;
  font-weight: 600;
}
@media screen and (max-width: 1120px) {
  #research-experience .gain-container .gain-section .gain-content h1 {
    font-size: 42px;
  }
}
@media screen and (max-width: 768px) {
  #research-experience .gain-container .gain-section .gain-content h1 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 16px;
  }
}
#research-experience .gain-container .gain-section .gain-content .benefits-list {
  list-style: none;
}
#research-experience .gain-container .gain-section .gain-content .benefits-list li {
  display: flex;
  align-items: center;
  padding: 32px 0;
  font-size: 16px;
  border-bottom: 1px solid #dcdcdc;
}
#research-experience .gain-container .gain-section .gain-content .benefits-list li:last-child, #research-experience .gain-container .gain-section .gain-content .benefits-list li:nth-child(4) {
  border-bottom: none;
}
@media screen and (max-width: 1120px) {
  #research-experience .gain-container .gain-section .gain-content .benefits-list li {
    padding: 24px 0;
  }
}
@media screen and (max-width: 768px) {
  #research-experience .gain-container .gain-section .gain-content .benefits-list li {
    padding: 16px 0;
  }
}
#research-experience .gain-container .gain-section .gain-content .benefits-list li .number {
  font-family: "outfit", sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #4ea62f;
  margin-right: 40px;
  min-width: 40px;
}
@media screen and (max-width: 1120px) {
  #research-experience .gain-container .gain-section .gain-content .benefits-list li .number {
    font-size: 36px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 768px) {
  #research-experience .gain-container .gain-section .gain-content .benefits-list li .number {
    font-size: 28px;
    margin-right: 20px;
  }
}
#research-experience .gain-container .gain-section .gain-content .benefits-list li .text {
  font-family: "SF Pro Display", sans-serif;
  font-size: 20px;
  line-height: 26px;
  color: #616161;
  max-width: 470px;
  width: 100%;
}
@media screen and (max-width: 1120px) {
  #research-experience .gain-container .gain-section .gain-content .benefits-list li .text {
    font-size: 18px;
    max-width: 100%;
  }
}
#research-experience .gain-container .gain-section .gain-content .benefits-list li .visit-btn {
  font-family: "SF Pro Display", sans-serif;
  padding: 16px 24px;
  color: #ffffff;
  background-color: #147187;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  border: transparent;
  cursor: pointer;
}
#research-experience .gain-container .gain-section .gain-image {
  flex-shrink: 0;
}
@media screen and (max-width: 1120px) {
  #research-experience .gain-container .gain-section .gain-image {
    width: 100%;
  }
}
#research-experience .gain-container .gain-section .gain-image img {
  width: 526px;
  height: 540px;
  border-radius: 24px;
  overflow: hidden;
  object-fit: cover;
}
@media screen and (max-width: 1120px) {
  #research-experience .gain-container .gain-section .gain-image img {
    width: 100%;
  }
}
#research-experience .gain-container .detail-sections {
  display: grid;
  gap: 48px;
}
#research-experience .gain-container .detail-sections .detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
#research-experience .gain-container .detail-sections .detail-card.reverse {
  direction: rtl;
}
#research-experience .gain-container .detail-sections .detail-card.reverse > * {
  direction: ltr;
}
#research-experience .gain-container .detail-sections .detail-card .detail-content {
  max-width: 390px;
  width: 100%;
}
#research-experience .gain-container .detail-sections .detail-card .detail-content h3 {
  font-family: "outfit", sans-serif;
  font-size: 48px;
  line-height: 56px;
  font-weight: 600;
  color: #147187;
  margin-bottom: 24px;
}
#research-experience .gain-container .detail-sections .detail-card .detail-content h4 {
  font-family: "SF Pro Display", sans-serif;
  font-size: 32px;
  line-height: 38px;
  color: #000;
  margin-bottom: 12px;
  font-weight: 400;
}
#research-experience .gain-container .detail-sections .detail-card .detail-content p {
  font-family: "SF Pro Display", sans-serif;
  color: #616161;
  line-height: 26px;
  font-size: 20px;
  font-weight: 400;
}
#research-experience .gain-container .detail-sections .detail-card .detail-image {
  border-radius: 12px;
  overflow: hidden;
}
#research-experience .gain-container .detail-sections .detail-card .detail-image img {
  width: 546px;
  height: 385px;
  object-fit: cover;
  display: block;
  overflow: hidden;
  border-radius: 24px;
}
@media (max-width: 968px) {
  #research-experience .gain-container .hero-section {
    flex-direction: column;
    text-align: center;
  }
  #research-experience .gain-container .hero-section .hero-content h1 {
    font-size: 32px;
  }
  #research-experience .gain-container .hero-section .hero-content .benefits-list li {
    justify-content: center;
  }
  #research-experience .gain-container .detail-sections .detail-card,
  #research-experience .gain-container .detail-sections .detail-card.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  #research-experience .gain-container .detail-sections .detail-card .detail-content {
    text-align: center;
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  #research-experience .gain-container {
    padding: 24px;
  }
  #research-experience .gain-container .detail-sections .detail-card .detail-content h4 {
    font-size: 18px;
    line-height: 22px;
  }
  #research-experience .gain-container .detail-sections .detail-card .detail-content p {
    font-size: 14px;
    line-height: 22px;
  }
  #research-experience .gain-container .detail-sections .detail-card .detail-image img {
    height: 250px;
  }
}
#research-experience .testimonials-section {
  background-color: #f7f7f7;
}
#research-experience .testimonials-section .testimonial-container {
  max-width: 1390px;
  margin: 0 auto;
  padding: 100px 20px;
}
@media screen and (max-width: 1024px) {
  #research-experience .testimonials-section .testimonial-container {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 768px) {
  #research-experience .testimonials-section .testimonial-container {
    padding: 40px 20px;
  }
}
#research-experience .testimonials-section .section-title {
  font-family: "outfit", sans-serif;
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 80px;
}
#research-experience .testimonials-section .slider-container {
  position: relative;
  padding: 0 60px;
}
#research-experience .testimonials-section .slider-container .slider-wrapper {
  overflow: hidden;
}
#research-experience .testimonials-section .slider-container .slider-wrapper .slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
#research-experience .testimonials-section .slider-container .slider-wrapper .slider-track .testimonial-card {
  min-width: 100%;
  padding: 0 15px;
}
#research-experience .testimonials-section .slider-container .slider-wrapper .slider-track .testimonial-card .card-content {
  background: white;
  border-radius: 16px;
  padding: 40px 30px 21px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#research-experience .testimonials-section .slider-container .slider-wrapper .slider-track .testimonial-card .card-content .avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 24px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #research-experience .testimonials-section .slider-container .slider-wrapper .slider-track .testimonial-card .card-content .avatar {
    width: 100px;
    height: 100px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 480px) {
  #research-experience .testimonials-section .slider-container .slider-wrapper .slider-track .testimonial-card .card-content .avatar {
    width: 60px;
    height: 60px;
  }
}
#research-experience .testimonials-section .slider-container .slider-wrapper .slider-track .testimonial-card .card-content .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  overflow: hidden;
}
#research-experience .testimonials-section .slider-container .slider-wrapper .slider-track .testimonial-card .card-content .student-name {
  font-family: "SF Pro Display", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 8px;
}
#research-experience .testimonials-section .slider-container .slider-wrapper .slider-track .testimonial-card .card-content .university {
  font-family: "SF Pro Display", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #676767;
  margin-bottom: 12px;
  line-height: 22px;
}
#research-experience .testimonials-section .slider-container .slider-wrapper .slider-track .testimonial-card .card-content .stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}
#research-experience .testimonials-section .slider-container .slider-wrapper .slider-track .testimonial-card .card-content .stars .star {
  color: #fbaa1b;
  font-size: 24px;
}
#research-experience .testimonials-section .slider-container .slider-wrapper .slider-track .testimonial-card .card-content .testimonial-text {
  font-family: "SF Pro Display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #2e2e2e;
  text-align: left;
}
#research-experience .testimonials-section .slider-container .slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}
#research-experience .testimonials-section .slider-container .slider-nav:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-50%) scale(1.05);
}
#research-experience .testimonials-section .slider-container .slider-nav:active {
  transform: translateY(-50%) scale(0.95);
}
#research-experience .testimonials-section .slider-container .slider-nav.prev {
  left: 10px;
}
#research-experience .testimonials-section .slider-container .slider-nav.next {
  right: 10px;
}
#research-experience .testimonials-section .slider-container .slider-nav svg {
  width: 32px;
  height: 32px;
  fill: #000;
}
@media (min-width: 768px) {
  #research-experience .testimonials-section .slider-container .slider-wrapper .slider-track .testimonial-card {
    min-width: 50%;
  }
}
@media (min-width: 1024px) {
  #research-experience .testimonials-section .slider-container .slider-wrapper .slider-track .testimonial-card {
    min-width: 33.333%;
  }
}
@media (max-width: 767px) {
  #research-experience .testimonials-section .section-title {
    font-size: 1.875rem;
  }
  #research-experience .testimonials-section .slider-container {
    padding: 0 0px;
  }
  #research-experience .testimonials-section .slider-container .slider-nav {
    width: 36px;
    height: 36px;
  }
  #research-experience .testimonials-section .slider-container .slider-nav svg {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 480px) {
  #research-experience .testimonials-section {
    padding: 40px 10px;
  }
  #research-experience .testimonials-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 40px;
  }
  #research-experience .testimonials-section .slider-container {
    padding: 0 0px;
  }
  #research-experience .testimonials-section .slider-container .slider-wrapper .slider-track .testimonial-card .card-content {
    padding: 30px 20px;
  }
}
#research-experience .cta-section {
  padding: 100px 20px;
}
@media screen and (max-width: 1024px) {
  #research-experience .cta-section {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 768px) {
  #research-experience .cta-section {
    padding: 30px 20px;
  }
}
#research-experience .cta-section .container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}
#research-experience .cta-section .inner {
  display: flex;
  align-items: center;
  gap: 86px;
}
@media screen and (max-width: 767px) {
  #research-experience .cta-section .inner {
    flex-direction: column;
    text-align: center;
  }
}
#research-experience .cta-section .content {
  max-width: 670px;
}
@media (max-width: 768px) {
  #research-experience .cta-section .content {
    max-width: 100%;
  }
}
#research-experience .cta-section .content .heading {
  font-family: "SF Pro Display", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #000000;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  #research-experience .cta-section .content .heading {
    font-size: 42px;
    line-height: 48px;
  }
}
@media (max-width: 768px) {
  #research-experience .cta-section .content .heading {
    font-size: 36px;
    line-height: 42px;
  }
}
@media (max-width: 480px) {
  #research-experience .cta-section .content .heading {
    font-size: 28px;
    line-height: 36px;
  }
}
#research-experience .cta-section .content .heading .highlight {
  color: #ff3b30;
}
#research-experience .cta-section .content .description {
  font-family: "SF Pro Display", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 26px;
  color: #616161;
  margin-bottom: 32px;
  max-width: 637px;
}
@media (max-width: 768px) {
  #research-experience .cta-section .content .description {
    font-size: 16px;
    margin-bottom: 28px;
    max-width: 100%;
  }
}
#research-experience .cta-section .content .cta-button {
  font-family: "SF Pro Display", sans-serif;
  display: inline-block;
  background-color: #147187;
  color: #ffffff;
  padding: 16px 24px;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
#research-experience .cta-section .content .cta-button:hover {
  background-color: #156070;
}
#research-experience .cta-section .content .cta-button:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  #research-experience .cta-section .content .cta-button {
    padding: 13px 22px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  #research-experience .partners-section {
    flex-direction: column;
    gap: 60px;
    text-align: center;
  }
  #research-experience .partners-section .content-left {
    max-width: 100%;
  }
  #research-experience .partners-section .content-left .section-title {
    font-size: 36px;
  }
  #research-experience .partners-section .content-left .section-description {
    font-size: 15px;
  }
  #research-experience .partners-section .content-left .partners-avatars {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  #research-experience .partners-section .content-left .section-title {
    font-size: 32px;
  }
  #research-experience .partners-section .content-left .partners-avatars .avatar {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 1024px) {
  #research-experience .research-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  #research-experience .research-section .section-header .main-title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  #research-experience body {
    padding: 40px 16px;
  }
  #research-experience .research-section .section-header {
    margin-bottom: 40px;
  }
  #research-experience .research-section .section-header .main-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  #research-experience .research-section .section-header .subtitle {
    font-size: 15px;
  }
  #research-experience .research-section .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  #research-experience .research-section .features-grid .feature-card {
    padding: 32px 24px;
  }
}
@media (max-width: 480px) {
  #research-experience .research-section .section-header .main-title {
    font-size: 28px;
  }
  #research-experience .research-section .features-grid .feature-card .icon-wrapper {
    width: 70px;
    height: 70px;
  }
  #research-experience .research-section .features-grid .feature-card .icon-wrapper svg {
    width: 35px;
    height: 35px;
  }
}

/*# sourceMappingURL=research-experience.css.map */
