:root {
  --primary-color: #030177;
  --secondary-color: #1e00c5;
  --light-color: #f4f4f4;
  --dark-color: #333;
  --accent-color: #ff6f61;
  --font-family: "Poppins", sans-serif;
  --section-light: #eaeaea;
}

/* Configuration Styles Import */
@import url("usables.css");

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  transition: transform 0.5s ease;
}

.translateY {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

#invisible {
  display: none;
}
a {
  text-decoration: none;
  color: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
  max-width: 100%;
  /* overflow: hidden; */
  position: relative;
}

button {
  font-family: var(--font-family);
  cursor: pointer;
  &:hover {
    transform: translateY(-2px);
  }
}

main {
  width: 100%;
  margin: 0;
  top: 0;
  position: absolute;
}

header {
  background-image: linear-gradient(
    to right,
    var(--primary-color),
    40%,
    var(--secondary-color)
  );
  color: white;
  padding: 8px 3%;
  text-align: center;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: start;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
}

/* mobile nav style */
#wrapper {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.692);
  width: 100vw;
  height: 100%;
  z-index: 1000;
  backdrop-filter: blur(5px);
  display: none;
}
.mobile-nav-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 50%;
  height: 100vh;
  background-color: var(--dark-color);
  color: var(--light-color);
  z-index: 100000;
  animation: slide-right 0.8s ease-in-out 0s 1;
}

.mobile-nav-content {
  display: flex;
  position: relative;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 10px 40px;
}
#times {
  font-size: 2rem;
  cursor: pointer;
  background-color: none;
  height: 2.2rem;
  width: 2.2rem;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  position: absolute;
  margin-right: -30px;

  &:hover,
  &:focus {
    background-color: red;
  }
}

.mobile-nav-content ul {
  list-style-type: none;
  margin-top: 50px;
  line-height: 3rem;
  width: 100%;
}

.mobile-nav-content ul li {
  border-bottom: 1px solid #008cff3f;
  font-size: 1.5rem;
}

.mobile-nav-content button {
  width: 100%;
  height: 3rem;
  background-color: var(--light-color);
  border: none;
  outline: none;
  border-radius: 10px;
  color: var(--primary-color);
  font-weight: 600;
  margin: 20px 0;
}

nav {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
  align-items: center;
  width: 90%;
}

nav .logo img {
  width: 8rem;
  height: 8 rem;
  object-fit: contain;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: start;
  gap: 15px;
  font-size: 11pt;
  font-weight: 600;
}

nav ul li a {
  text-decoration: none;
  color: #f7f7f7;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  text-align: center;
  display: inline-block;
}

.nav-icon {
  font-size: 8px;
  margin-left: 3px;
}

nav span {
  display: inline-flex;
  align-items: center;
  gap: 40px;
}
nav button {
  background-color: var(--light-color);
  color: var(--dark-color);
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 11pt;
  transition: background-color 0.3s ease;
  margin: 0 5px;
}

nav button:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.mobile-nav {
  display: none;
  width: 90%;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

#menu-icon {
  font-size: 1.3rem;
  cursor: pointer;
  background-color: var(--primary-color);
  padding: 5px;
  border-radius: 5px;

  &:hover {
    background-color: var(--secondary-color);
  }
}

/* Hero Section Begins */

.hero-section {
  display: flex;
  justify-content: center;
  justify-content: center;
  align-items: center;
  height: 90vh;
  background-color: var(--section-light);
  padding: 8%;
  gap: 5%;
}

.hero-section h1 {
  font-size: 3rem;
  color: var(--primary-color);
  text-align: left;
  line-height: 3.5rem;
  margin-bottom: 30px;
}
.hero-section p {
  font-size: 1.2rem;
  color: var(--dark-color);
  text-align: left;
  margin-top: 10px;
  max-width: 600px;
  font-weight: 600;
  margin: 0;
}
.hero-section iframe,
.hero-section video {
  width: 100%;
  height: 70%;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-section .hero-video {
  background-color: var(--primary-color);
  height: 100%;
  padding: 20px 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 500px;
  max-height: 400px;
}

.hero-video button {
  background-color: var(--light-color);
  color: var(--dark-color);
  border: none;
  padding: 15px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14pt;
  font-weight: 600;
  transition: transform 0.3s ease;
  margin: 20px 5px 0 0;
  width: 100%;
}
.hero-video button:hover {
  transform: translateY(-2px);
}

.hero-section .hero-icon-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.hero-section .hero-icon-item {
  display: flex;
  align-items: center;
}

.hero-icon-group .hero-icon {
  font-size: 16pt;
  background-color: var(--primary-color);
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  width: auto;
  height: 100%;
  color: var(--light-color);
  margin-right: 10px;
}

.hero-icon-group p {
  font-size: 9pt;
}

/* CTA Section Style */
.cta-section {
  background-color: var(--primary-color);
  color: var(--light-color);
  text-align: center;
  padding: 30px 20%;
  margin: 0;
}
.cta-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-tab-group {
  display: block;
  gap: 20px;
}
.cta-partner-group {
  display: flex;
  gap: 20px;
  justify-content: left;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
}
.cta-partner {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background-color: var(--light-color);
  padding: 5px;
  margin: 0;
  border-radius: 200px;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.534);

  &:hover {
    z-index: 100000;
    transform: translateY(-2px);
  }
}
.cta-partner:nth-child(1) {
  margin-left: -20px;
}
.cta-partner:nth-child(2) {
  margin-left: -40px;
}
.cta-partner:nth-child(3) {
  margin-left: -40px;
}
.cta-partner:nth-child(4) {
  margin-left: -40px;
}

.cta-partner-text {
  font-size: 0.9rem;
  color: var(--light-color);
  margin-top: 10px;
  text-align: left;
  text-transform: capitalize;
  font-weight: 600;
  width: 300px;
  margin-left: -20px;
  margin-bottom: 0;
}

.cta-h3 {
  font-size: 1.5rem;
  margin-bottom: 0;
  color: var(--light-color);
  font-weight: 600;
  letter-spacing: -3px;
}

.cta-p {
  font-size: 0.9rem;
  margin-top: 0;
  color: var(--light-color);
  font-weight: 600;
}

/* Course Section */

.course-overview {
  padding: 50px 8%;
  background-color: var(--section-light);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.course-content h2 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1.5rem;
}
.course-content p {
  font-size: 1rem;
  color: var(--dark-color);
  margin-bottom: 40px;
  margin-right: 40px;
  max-width: 800px;
  line-height: 2rem;
  font-weight: 600;
}
.course-content h3 {
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1.5rem;
}
.course-content ul {
  list-style: disc;
  margin-left: 20px;
  color: var(--dark-color);
  font-size: 0.9rem;
  line-height: 1.5rem;
}

.course-price-box {
  background-color: #008cff0c;
  padding: 40px 20px;
  border-radius: 10px;
  border: 1px solid #008cff67;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  height: fit-content;
  width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
}

.course-price-box b {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1rem;
  margin-right: 5px;
}

.course-price-box del {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 20px;
  line-height: 1rem;
}

.course-price-box ul {
  list-style: none;
  margin: 0;
  color: var(--dark-color);
  font-size: 0.9rem;
  line-height: 2.3rem;
  margin-bottom: 10px;
}
.course-price-box ul li i {
  margin-right: 10px;
  color: var(--primary-color);
}

.course-price-box button {
  background-color: var(--primary-color);
  color: var(--light-color);
  border: none;
  padding: 15px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14pt;
  font-weight: 600;
  transition: transform 0.3s ease;
  margin: 20px 5px 0 0;
  width: 100%;
}

.curriculum-section {
  padding: 80px 8%;
  background-color: var(--light-color);
  text-align: left;
}

.curriculum-header h2 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1.5rem;
}
.curriculum-header p {
  font-size: 1rem;
  color: var(--dark-color);
  margin-bottom: 40px;
  max-width: 800px;
  line-height: 2rem;
  font-weight: 600;
}

.curriculum-section > span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.curriculum-topic-group {
  width: 100%;
}

.curriculum-topic {
  background-color: #008cff0c;
  border: 1px solid #008cff67;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 10px 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
  width: fit-content;
  min-width: 500px;
  max-width: 500px;
  gap: 50px;

  &:hover,
  &:focus {
    background-color: var(--primary-color);
    color: var(--light-color);
  }
}
.curriculum-topic h4 {
  font-size: 1rem;
  margin: 0;
  line-height: 1.5rem;
  font-weight: 400;
}

.curriculum-topic span {
  font-size: 1rem;
  font-weight: 400;
  border: 1px solid #008cff67;
  padding: 10px 15px;
  border-radius: 50px;
  transition: transform 0.3s ease;
  min-width: 120px;
  text-align: center;

  &:hover,
  &:focus {
    transform: translateY(-2px);
    background-color: var(--light-color);
    color: var(--primary-color);
  }
}

.curriculum-topic-details {
  width: fit-content;
  max-width: 70%;
  max-height: 400px;
  margin: 10px auto 20px auto;
  padding: 0;
  background-color: var(--light-color);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: filter, max-height 0.5s ease, padding 0.5s ease;

  &:hover,
  &:focus {
    filter: brightness(70%);
  }
}
.curriculum-topic-details img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
  object-position: center;
}

/* Course Objectives */
.course-objective {
  padding: 50px 8%;
  background-color: var(--primary-color);
  color: var(--light-color);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* flex-direction: column; */
}
.course-objective h3 {
  font-size: 1.5rem;
  color: var(--light-color);
  margin-bottom: 10px;
  line-height: 1.5rem;
}

.objective-list {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  list-style: none;
  line-height: 2rem;
}
.objective-list li i {
  margin-right: 20px;
  color: var(--light-color);
}

.objective-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 60% 40% 40% 40%;
  object-fit: contain;
  object-position: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Faq Section begins here  */

.faq-section {
  margin: 40px 8%;
  display: flex;
  justify-content: space-between;
}

.faq-h2 {
  font-size: 2rem;
  max-width: 600px;
  color: var(--primary-color);
}

.faq-btn {
  width: 100%;
  margin-top: 30px;
  height: 2.5rem;
  border: none;
  outline: none;
  background-color: var(--primary-color);
  color: var(--light-color);
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease;

  &:hover,
  &:focus {
    background-color: var(--secondary-color);
  }

  @media (max-width: 1023px) {
    width: 60%;
  }
}

/* Footer Begins */
.footer-section {
  padding: 40px 20%;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  background-image: linear-gradient(
    to bottom right,
    var(--primary-color),
    90%,
    var(--secondary-color)
  );
  color: var(--light-color);

  background-image: url("../img/world-map.png");
  background-position: center;
  background-size: contain;
  background-color: #02004b;

  @media (max-width: 900px) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

.footer-group {
  @media (max-width: 900px) {
    width: 100px;
  }
}

.footer-group b {
  font-weight: 600;
  font-size: 1rem;
  text-decoration: underline;
}

.footer-group ul {
  gap: 10px;
  list-style-type: square;
  list-style-position: outside;
  line-height: 2rem;
}

.footer-group ul li {
  margin: 0;
  padding: 0;

  &:first-child {
    margin-top: 30px;
  }

  &:hover {
    color: #008cff;
  }
}

.footer-credit {
  background-color: #02004b;
  border-top: 1px solid #008cff2c;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  color: var(--light-color);
}

/* MEDIA QUERIES BEGINS HERE */
/* Media Queries for Tablet Devices */

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .mobile-nav {
    display: flex;
  }
  nav {
    width: 95%;
  }

  /* Hero section  */
  .hero-section {
    flex-direction: column;
    height: auto;
    justify-content: center;
  }
  .hero-text {
    text-align: center;
    margin: auto;
    width: 95%;
    overflow: hidden;
  }
  .hero-section h1 {
    font-size: 2.5rem;
    line-height: 3rem;
    text-align: center;
    margin-bottom: 20px;
    max-width: 600px;
    word-break: break-word;
  }
  .hero-section p {
    font-size: 1rem;
    text-align: center;
    max-width: 600px;
  }
  .hero-section .hero-video {
    width: 100%;
    height: auto;
    margin-top: 30px;
  }
  .hero-section iframe,
  .hero-section video {
    height: auto;
  }
  .hero-section .hero-icon-group {
    margin-bottom: 10px;
    text-align: left;
    grid-template-rows: repeat(1, 1fr);
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }
  .hero-icon-group .hero-icon {
    font-size: 14pt;
    padding: 15px;
  }
  .hero-icon-group h4 {
    font-size: 1rem;
  }
  .hero-icon-group p {
    font-size: 0.8rem;
    text-align: left;
    line-height: 0.8rem;
  }

  /* CTA Section */
  .cta-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .cta-item {
    display: grid;
    text-align: center;
    width: 100%;
    gap: 30px;
    align-items: end;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    margin-bottom: 40px;
  }
  .cta-tab-group {
    margin: 0;
    padding: auto;
    display: grid;
    place-items: center;
    text-align: center;
    padding-bottom: 25px;
    height: 100%;
    width: 100%;
    border-radius: 10px;
    border-bottom: 0.1px solid #008cff67;
    &:hover {
      transform: translateY(-2px);
      background-color: #008cff67;
    }
  }

  .cta-tab-group:nth-child(1) {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 0.1px solid #008cff67;
  }
  .cta-partner {
    width: 60px;
    height: 60px;
  }
  .cta-partner-text {
    font-size: 0.8rem;
    width: auto;
    margin-left: 0;
    text-align: center;
  }
  .cta-h3 {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -2px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .cta-h3 i {
    font-size: 2.5rem;
    margin-bottom: 5px;
  }
  .cta-p {
    font-size: 0.8rem;
    margin: 0;
    font-weight: 600;
  }

  /* Course overview section */
  .course-overview {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding: 40px 8%;
  }
  .course-content h2 {
    font-size: 1.8rem;
    text-align: left;
    line-height: 2rem;
    margin-bottom: 30px;
  }
  .course-content p {
    font-size: 1rem;
    text-align: left;
    margin-bottom: 30px;
    line-height: 1.5rem;
  }
  .course-content h3 {
    font-size: 1.2rem;
    text-align: left;
    line-height: 1.5rem;
    margin-bottom: 20px;
  }
  .course-content ul {
    margin-left: 20px;
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
  .course-price-box {
    width: 100%;
    /* max-width: 400px; */
    margin: auto;
  }

  /* Curriculum Section */
  .curriculum-section > span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .curriculum-topic {
    max-width: 100%;
    width: 100%;
    display: flex;
    gap: 20px;
  }
  .curriculum-topic span {
    padding: 10px 15px;
    font-size: 0.9rem;
    min-width: 100px;
    text-align: center;
  }

  .curriculum-topic-details {
    max-width: 100%;
    width: 100%;

    &:hover,
    &:focus {
      filter: brightness(70%);
    }
  }

  /* Course Objective */
  .course-objective {
    flex-direction: column;
  }
  .course-objective h3 {
    line-height: 2rem;
  }
  .course-objective ul {
    line-height: 1.5rem;
  }
  .course-objective ul li {
    margin-bottom: 20px;

    &:last-child {
      margin-bottom: 100px;
    }
  }
}

@media (max-width: 1045px) {
  .desktop-nav {
    display: none;
  }
  .mobile-nav {
    display: flex;
  }
  nav {
    width: 95%;
  }

  .course-overview {
    flex-direction: column;
    justify-content: left;
  }
}

/* Media Queries For Mobile Devices */
@media (max-width: 600px) {
  .desktop-nav {
    display: none;
  }
  .mobile-nav {
    display: flex;
  }
  nav {
    width: 95%;
  }

  /* Mobile Hero Section */

  .hero-section {
    flex-direction: column;
    height: auto;
    justify-content: center;
  }
  .hero-text {
    text-align: center;
    margin: auto;
    width: 95%;
    overflow: hidden;
  }
  .hero-section h1 {
    font-size: 2.5rem;
    line-height: 3rem;
    text-align: center;
    margin-bottom: 20px;
    max-width: 400px;
    word-break: break-word;
  }
  .hero-section p {
    font-size: 1rem;
    text-align: center;
    max-width: 400px;
  }
  .hero-section .hero-video {
    width: 100%;
    height: auto;
  }
  .hero-section iframe,
  .hero-section video {
    height: auto;
  }
  .hero-section .hero-icon-group {
    margin: 30px 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .hero-icon-group h4 {
    font-size: 1rem;
  }
  .hero-icon-group p {
    font-size: 0.8rem;
    text-align: left;
    line-height: 0.8rem;
  }

  /* CTA Section */
  .cta-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .cta-item {
    text-align: center;
    width: 100%;
    align-items: center;
    display: block;
  }
  .cta-tab-group {
    margin: 0;
    padding: 30px 0;
    display: block;
    text-align: center;
    padding-bottom: 25px;
    width: 100%;
    border-bottom: 0.1px solid #008cff67;
    border-radius: 0;
    &:hover {
      transform: translateY(-2px);
      background: none;
    }
  }
  .cta-tab-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
  .cta-tab-group:nth-child(1) {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 0.1px solid #008cff67;
    border-radius: 0px;
  }
  .cta-partner {
    width: 60px;
    height: 60px;
  }
  .cta-partner-text {
    font-size: 0.8rem;
    width: auto;
    margin-left: 0;
    text-align: center;
  }
  .cta-h3 {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -2px;
    display: block;
  }
  .cta-h3 i {
    font-size: 1.4rem;
  }
  .cta-p {
    font-size: 0.8rem;
    margin: 0;
    font-weight: 600;
  }

  /* Course overview section */
  .course-overview {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding: 40px 8%;
  }
  .course-content h2 {
    font-size: 1.8rem;
    text-align: left;
    line-height: 2rem;
    margin-bottom: 30px;
  }
  .course-content p {
    font-size: 1rem;
    text-align: left;
    margin-bottom: 30px;
    line-height: 1.5rem;
  }
  .course-content h3 {
    font-size: 1.2rem;
    text-align: left;
    line-height: 1.5rem;
    margin-bottom: 20px;
  }
  .course-content ul {
    margin-left: 20px;
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
  .course-price-box {
    width: 100%;
    max-width: 400px;
    margin: auto;
  }

  /* Curriculum Section */
  .curriculum-section > span {
    display: block;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .curriculum-topic {
    max-width: 100%;
    min-width: 100%;
    width: 100%;
    display: block;
    padding: 20px;
    gap: 20px;
  }

  .curriculum-topic span {
    padding: 10px 15px;
    font-size: 0.9rem;
    min-width: 100px;
    text-align: center;
    margin: 0;
  }

  .curriculum-topic-details {
    max-width: 100%;
    width: 100%;

    &:hover,
    &:focus {
      filter: brightness(70%);
    }
  }
  #invisible {
    display: block;
  }

  .course-objective {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding: 40px 8%;
  }
  .course-objective h3 {
    font-size: 1.8rem;
    text-align: left;
    line-height: 2rem;
    margin-bottom: 30px;
  }
  .objective-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    line-height: 1.6rem;
    text-align: left;
  }
  .objective-list li i {
    margin-right: 15px;
    color: var(--light-color);
  }
  .objective-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 60% 40% 40% 40%;
    object-fit: contain;
    object-position: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
}
