body {
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #000;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

button {
  border: none;
  cursor: pointer;
}
p {
  font-family: "Open Sans", sans-serif;
  font-size: 20px !important;
  font-weight: 400;

  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Open Sans", sans-serif;
  margin: 0;
}

a {
  font-family: "Open Sans", sans-serif;
  text-decoration: none;
  color: inherit;
}

ul {
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
}

* {
  font-family: "Open Sans", sans-serif;
  box-sizing: border-box;
}

li {
  font-family: "Open Sans", sans-serif;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-4 {
  gap: 1rem;
}

@media screen and (max-width: 700px) {
  p {
    font-size: 17px !important;
  }

  h1 {
    font-size: 28px !important;
  }

  h2 {
    font-size: 24px !important;
  }
}

/* #home-hero  */

#home-hero {
  padding-top: 14rem;
  background-image: url("../assets/images/hero-image.webp");
  background-size: cover;
  object-fit: cover;
  padding-bottom: 4rem;
  height: 100vh;
  min-height: 100vh;
}

#home-hero .container {
  display: flex;
  width: 100%;
  align-items: stretch;
  justify-content: space-between;
  height: 100%;
}

#home-hero .wrapper img {
  height: 42px;
  width: 152px;
}

#home-hero .wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  color: #fff !important;
}

#home-hero .wrapper h1 {
  font-size: 52px;
  font-weight: bold;
}

#hero-image {
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
}
#hero-image.fade-out {
  opacity: 0;
}

#home-hero .content {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: flex-start;
  gap: 2rem;
  padding: 3rem 4rem;
}

#home-hero .video {
  width: 55%;
  position: relative;
  height: fit-content;
}

#home-hero .video img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

#home-hero button {
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  background: #c2ebff;
  color: #003292;
  transition: 0.3s;
}

#home-hero button:hover {
  background: #003292;
  color: white;
}

.video-controls {
  position: absolute;
  bottom: 40px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 55;
}

.video-controls button {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  padding: 10px !important;
  font-size: 14px;
  aspect-ratio: 1/1;
  cursor: pointer;
  transition: background 0.3s ease;
}

.video-controls button:hover {
  background: rgba(0, 0, 0, 0.8);
}

@media screen and (max-width: 1100px) {
  #home-hero {
    padding-top: 6rem;
    min-height: unset;
    height: auto;
  }

  #home-hero .container {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 2rem;
  }

  #home-hero .content {
    padding: 2rem;
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  #home-hero .content a {
    font-size: 16px;
  }

  #home-hero .video {
    width: 100%;
    height: auto;
  }

  #hero-video-wrapper {
    height: 100%;
    aspect-ratio: unset;
    border-top-left-radius: 0% !important;
    border-bottom-left-radius: 0% !important;
  }

  #home-hero .video img {
    border-bottom-left-radius: 0%;
    border-top-left-radius: 0;
  }

  #home-hero .wrapper h1 {
    font-size: 32px;
  }

  .video-controls {
    bottom: 35px;
  }

  .hero-video {
    object-fit: contain !important;
  }
}

#platforms .platform-video .video-wrapper {
  position: relative;
}

#platforms .platform-video .video-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  pointer-events: auto;
}

#hero-video-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

#hero-video-wrapper::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 aspect ratio */
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.hero-video.active {
  opacity: 1;
  pointer-events: auto;
}

#video-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

#video-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s ease;
}

#video-dots .dot.active {
  background: #0073e6;
}

/* <section id="home-eclipse"> */

#home-eclipse {
  background: url("../assets/images/Frame7.png") no-repeat center center;
  background-size: cover;
  object-fit: cover;
}

#home-eclipse .container {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 3rem;
}

#home-eclipse .content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
  width: 50%;
}

#home-eclipse .content button {
  color: #003292;
  border: 1px solid #003292;
  background: white;
  padding: 1rem 2rem;
  transition: 0.3s;
  border-radius: 2rem;
}

#home-eclipse .content button:hover {
  background: #003292;
  color: white;
}
#home-eclipse .content h1 {
  font-size: 48px;
  font-weight: bold;
}

#home-eclipse .image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}

#home-eclipse .image img {
  object-fit: cover;
  max-height: 530px;
}

@media screen and (max-width: 1100px) {
  #home-eclipse .container {
    flex-direction: column;
    gap: 1rem;
  }

  #home-eclipse .content {
    align-items: center;
    width: auto;
  }

  #home-eclipse .content p {
    text-align: center;
  }

  #home-eclipse .image img {
    height: 200px;
  }
}

@media screen and (max-width: 1000px) {
  #home-eclipse .content h1 {
    font-size: 32px;
  }
  #home-eclipse .content p {
    font-size: 14px;
  }
}
/* <section id="home-eclipse"> */

#home-eclipse-reverse {
  background: url("../assets/images/talent-network-bg.webp");
  background-size: cover;
  object-fit: cover;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

#home-eclipse-reverse .container {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 4rem;
  padding: 3rem;
}

#home-eclipse-reverse .content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
  width: 50%;
}

#home-eclipse-reverse .content button {
  background: #003292;
  color: white;
  border-radius: 50px;
  border: 1px solid #003292;
  padding: 1rem 2rem;
  transition: 0.3s;
}
#home-eclipse-reverse .content button:hover {
  color: #003292;
  border: 1px solid #003292;
  background: white;
}
#home-eclipse-reverse .content h1 {
  font-size: 48px;
  font-weight: bold;
}

#home-eclipse-reverse .image {
  display: flex;
  justify-content: end;
  align-items: center;
  width: 30%;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1/1;
  margin: 0 4rem;
}

#home-eclipse-reverse .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1100px) {
  #home-eclipse-reverse .container {
    flex-direction: column;
    gap: 1rem;
  }

  #home-eclipse-reverse .content {
    align-items: center;
    width: auto;
  }

  #home-eclipse-reverse .content p {
    text-align: center;
  }

  #home-eclipse-reverse .image {
    width: 100%;
  }

  #home-eclipse-reverse .image img {
    height: 100%;
  }

  #home-eclipse-reverse .content h1 {
    font-size: 32px;
    text-align: center;
  }

  #home-eclipse-reverse .content p {
    font-size: 14px;
  }

  #home-eclipse-reverse .content button {
    font-size: 16px;
  }
}

/* home-eclipse-special */

#home-eclipse-special {
  background: url("../assets/images/frame8.png") no-repeat center center;
  background-size: cover;
  object-fit: cover;
}

#home-eclipse-special .container {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 4rem 0;
}

#home-eclipse-special .content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
  width: 50%;
  padding: 2rem;
}

#home-eclipse-special .content button {
  background: white;
  color: #003292;
  border-radius: 50px;
  border: 1px solid #003292;
  padding: 1rem 2rem;
  transition: 0.3s;
}

#home-eclipse-special .content button:hover {
  color: white;
  border: 1px solid #003292;
  background: #003292;
}

#home-eclipse-special .content h1 {
  font-size: 48px;
  font-weight: bold;
}

#home-eclipse-special .content p {
  width: 75%;
}

#home-eclipse-special .image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  background-color: #bf0707;
  border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  padding: 4rem;
  color: white;
  gap: 1rem;
  font-weight: bold;
}
#home-eclipse-special .image p {
  max-width: 300px;
  text-align: center;
}

#home-eclipse-special .image img {
  object-fit: cover;
  max-height: 530px;
  border-radius: 50%;
}

@media screen and (max-width: 1100px) {
  #home-eclipse-special .container {
    flex-direction: column;
    gap: 1rem;
  }

  #home-eclipse-special .content {
    align-items: center;
    width: auto;
  }

  #home-eclipse-special .content p {
    text-align: center;
    width: 100%;
  }

  #home-eclipse-special .image {
    border-radius: 0%;
    width: 100%;
    padding: 1rem;
    aspect-ratio: 1 / 1;
  }

  #home-eclipse-special .image img {
    height: auto;
    width: 90%;
  }

  #home-eclipse-special .content h1 {
    font-size: 32px;
    text-align: center;
  }
  #home-eclipse-special .content p {
    font-size: 14px;
  }
}

/* Impact */

#impact {
  background: url("../assets/images/frameBlue.webp");
  padding: 6rem 2rem;
}

#impact .container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  align-items: center;
}

#impact .header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: white;
  align-items: center;
}

#impact .header p {
  width: 60%;
  text-align: center;
}

#impact .header h2 {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
}

#impact .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

#impact .card {
  display: flex;
  flex-direction: column;
  align-self: self-start;
  gap: 2rem;
  background: white;
  border-radius: 18px;
  padding: 2rem;
  height: 100%;
  max-width: 500px;
}

#impact .card h2 {
  font-size: 50px;
  font-weight: bold;
  color: #003292;
}

#impact .card h3 {
  color: #170f49;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

#impact .card p {
  color: #6f6c90;
  font-size: 18px;
}

@media screen and (max-width: 1100px) {
  #impact .content {
    grid-template-columns: repeat(1, 1fr);
  }

  #impact .header p {
    width: auto;
  }

  #impact .header h2 {
    font-size: 32px;
  }

  #impact .card h2 {
    font-size: 32px;
  }

  #impact .card h3 {
    font-size: 20px;
  }
}
/* involved */

#involved {
  background: #c2ebff;
  padding: 4rem 3rem;
}

#involved .container {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  gap: 3rem;
}

#involved .header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#involved .header h1 {
  font-size: 48px;
  font-weight: bold;
}

#involved .header p {
  width: 60%;
}

#involved .content {
  display: flex;
  width: 100%;
  gap: 2rem;
}

#involved .card {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 2rem;
  height: 440px;
  width: 100%;
  color: white;
  border-radius: 2rem;
}

#involved .card1 {
  background: url("../assets/images/card2.png") no-repeat center center;
  background-size: cover;
}

#involved .card2 {
  background: url("../assets/images/card1.png") no-repeat center center;
  background-size: cover;
}

#involved .card3 {
  background: url("../assets/images/card3.png") no-repeat center center;
  background-size: cover;
}

@media screen and (max-width: 900px) {
  #involved .content {
    flex-direction: column;
  }

  #involved .card {
    max-height: 300px;
  }

  #involved .header p {
    width: auto;
  }

  #involved {
    padding: 2rem;
  }
}

/* about Hero */

#abouthero {
  padding-top: 120px;
}

#abouthero .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  padding-left: 1rem;
}

#abouthero .left-curve-edge {
  position: absolute;
  bottom: -100%;
  left: 0;
  z-index: -1;
}

#abouthero .right-curve-edge {
  position: absolute;
  bottom: -50%;
  right: 0;
}

#abouthero .content {
  width: 50%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: self-start;
}

#abouthero .image {
  width: 40%;
  background-color: #003292;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
}

#abouthero .image img {
  width: 80%;
}

#abouthero .content h1 {
  font-size: 52px;
  font-weight: bold;
}

#abouthero .content button {
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  background: #c2ebff;
  color: #003292;
  font-size: 16px;
  transition: 0.3s;
}

#abouthero .content button:hover {
  background: #003292;
  color: white;
}

@media screen and (max-width: 1100px) {
  #abouthero .container {
    flex-direction: column-reverse;
    max-width: 100vw;
    overflow: hidden;
    position: relative;
  }

  #abouthero .content {
    width: auto;
    align-items: center;
  }

  #abouthero .content p {
    text-align: center;
  }

  #abouthero .image {
    width: 90%;
    padding: 1rem;
    z-index: 1;
  }

  #abouthero .image img {
    width: 100%;
  }

  #abouthero .content h1 {
    font-size: 32px;
  }

  #abouthero .content p {
    font-size: 14px;
  }

  #abouthero .left-curve-edge,
  #abouthero .right-curve-edge {
    opacity: 0.2;
  }
}

/* team */

#team {
  padding: 3rem;
}

#team .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

#team .header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

#team .header h1 {
  font-size: 62px;
  font-weight: bold;
}

#team .header p {
  font-size: 18px;
  width: 60%;
}

#team .content {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  padding: 2rem;
}

#team .card {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

#team .margin {
  margin-top: 7rem;
}

#team .data {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#team .data h3 {
  font-size: 24px;
  font-weight: 600;
}

#team .data p {
  font-size: 16px;
}

@media screen and (max-width: 1300px) {
  #team {
    padding: 1rem;
  }

  #team .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  #team .header {
    align-items: center;
    padding: 1rem;
  }

  #team .header h1 {
    font-size: 38px;
  }

  #team .header p {
    text-align: center;
    width: auto;
  }

  #team .header h1 {
    text-align: center;
  }

  #team .margin {
    margin: 0;
  }

  #team .card img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
  }
}

@media screen and (max-width: 700px) {
  #team .card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
  }
}

/* wage */

#wage {
  background: #03c3f414;
  width: 90%;
  border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  padding: 6rem 3rem;
  border: 2px #03c3f4 solid;
}

#wage .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: self-start;
}

#wage .container h1 {
  font-size: 48px;
  font-weight: bold;
}

#wage .container p {
  font-size: 18px;
  width: 50%;
}

#wage .container button {
  background: #003292;
  color: white;
  border-radius: 50px;
  border: 1px solid #003292;
  padding: 1rem 2rem;
  transition: 0.3s;
}

#wage .container button:hover {
  color: #003292;
  border: 1px solid #003292;
  background: white;
}

@media screen and (max-width: 1100px) {
  #wage {
    width: 100%;
    border-radius: 0;
    padding: 4rem 2rem;
  }

  #wage .container {
    align-items: center;
    padding: 0;
  }

  #wage .container p {
    text-align: center;
    width: auto;
  }

  #wage .container h1 {
    text-align: center;
  }

  #wage .container h1 {
    font-size: 32px;
  }

  #wage .container p {
    font-size: 14px;
  }
}
/* #partners  */

#partners {
  padding: 6rem 3rem;
  background: #b6e5fc;
}

#partners .container {
  display: flex;
  align-items: center;
}

#partners .data {
  width: 40%;
}

#partners .data h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 2rem;
}

#partners .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  background: #c2ebff;
  border-radius: 50%;
  padding: 8rem 5rem;
  position: absolute;
  right: 5%;
  border: 1px #ffffff solid;
}

#partners .content h3 {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
}

#partners .info p {
  font-size: 14px;
}

#partners .info h3 {
  font-size: 22px;
  font-weight: 600;
}

@media screen and (max-width: 1100px) {
  #partners .container {
    flex-direction: column;
    align-items: normal;
    gap: 2rem;
  }
  #partners .content {
    position: relative;
    right: 0;
    align-items: center;
    border-radius: 3rem;
    padding: 1rem;
  }

  #partners .data {
    width: auto;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  #partners .info {
    text-align: start;
    width: 100%;
  }

  #partners .info div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: start;
  }

  #partners .content h3 {
    width: 100%;
    font-size: 22px;
    font-weight: 500;
  }

  #partners .data h1 {
    font-size: 32px;
  }

  #partners .info p {
    font-size: 14px;
    width: 100%;
  }

  #partners .data p {
    text-align: start;
  }
  #partners .info div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #partners {
    padding: 1rem;
  }
}

/* join */
#join {
  background: url("../assets/images/famerfooter.webp") no-repeat center center;
  background-size: cover;
  object-fit: cover;
  height: 80vh;
  width: 100%;
  color: white;
}

#join .container {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: self-start;
  justify-content: center;
  height: 100%;
}

#join .container h3 {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

#join .container h2 {
  font-size: 44px;
}
#join .container button {
  background: white;
  color: black;
  border-radius: 50px;
  border: none;
  padding: 1rem 2rem;
  font-size: 16px;
  transition: 0.3s;
}

#join .container button:hover {
  background: #003292;
  color: white;
}

.partnaire {
  background: #f2f2f2;
  padding: 4rem 0;
}

.partnaire2 {
  background: #deebff;
}

.partnaire3 {
  background: #f3fbff;
}

.partnaire1 {
  background: white;
}

.partnaire .container {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
}

.partnaire .reverse {
  flex-direction: row-reverse;
}

.partnaire .content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: self-start;
}

.partnaire .content h1 {
  font-size: 48px;
}

.partnaire .content p {
  width: 70%;
}

.partnaire .content button {
  background: #003292;
  color: white;
  border-radius: 50px;
  border: 1px solid #003292;
  padding: 1rem 2rem;
  transition: 0.3s;
}

.partnaire .content button:hover {
  color: #003292;
  border: 1px solid #003292;
  background: white;
}

@media screen and (max-width: 796px) {
  .partnaire .container {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .partnaire .content {
    align-items: center;
  }

  .partnaire .content p {
    text-align: center;
  }

  .partnaire .image img {
    border-radius: 50%;
    width: 400px;
    height: 400px;
  }

  #join .container h2 {
    font-size: 32px;
  }
}

/* whyemc */

#whyemc {
  padding-top: 120px;
  position: relative;
}

.framework-ring {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

#whyemc .container {
  display: flex;
  align-items: center;
  gap: 10rem;
  justify-content: flex-start;
}

#whyemc .image {
  width: 65%;
  background-color: #003292;
  border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  padding: 3rem;
  display: flex;
  justify-content: flex-end;
}

#whyemc .image img {
  width: 90%;
  border-radius: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

#whyemc .content {
  width: 60%;
}

#whyemc .content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: start;
}

#whyemc h1 {
  font-size: 52px;
  font-weight: bold;
}

#whyemc p {
  color: #333333;
  width: 50%;
}

@media screen and (max-width: 796px) {
  #whyemc .container {
    flex-direction: column-reverse;
    max-width: 100vw;
    overflow: hidden;
    gap: 2rem;
  }

  #whyemc .content {
    align-items: center;
    width: auto;
    padding: 2rem;
  }

  #whyemc .content p {
    text-align: center;
    width: 100%;
  }

  #whyemc .content h1 {
    font-size: 38px;
    text-align: center;
  }

  #whyemc .image {
    width: 100%;
  }

  #whyemc .image img {
    width: 100%;
    max-width: unset;
  }

  #whyemc .content h1 {
    font-size: 28px;
  }

  #whyemc .content p {
    font-size: 14px;
  }
}

/* <section id="our-model"> */

#our-model {
  padding: 6rem;
}

#our-model .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4rem;
  justify-content: flex-start;
}

#our-model .content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: start;
}

#our-model .content h1 {
  font-size: 52px;
  font-weight: 600;
}

#our-model .content p {
  color: #333333;
  width: 50%;
}

#our-model .models-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

#our-model .models-row .model {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
  border-top-left-radius: 1000px;
  border-top-right-radius: 1000px;
  aspect-ratio: 1/1.3;
  padding: 4rem 2rem 0 2rem;
}

#our-model .models-row .model h4 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

#our-model .models-row .model .number {
  font-weight: bold;
}

#our-model .models-row .model-1 {
  background: #ffc6c6;
  width: 13%;
}

#our-model .models-row .model-1 p {
  color: #ffa0a0;
  font-size: 80px !important;
  line-height: 65px !important;
}

#our-model .models-row .model-2 {
  background: #ed4b4a;
  width: 17%;
}

#our-model .models-row .model-2 p {
  color: #e80100;
  font-size: 94px !important;
  line-height: 80px !important;
}

#our-model .models-row .model-3 {
  background: #bf0707;
  width: 19%;
}

#our-model .models-row .model-3 p {
  color: #820000;
  font-size: 131px !important;
  line-height: 108px !important;
}

#our-model .models-row .model-4 {
  background: #003292;
  width: 19%;
}

#our-model .models-row .model-4 p {
  color: #001c51;
  font-size: 131px !important;
  line-height: 108px !important;
}

#our-model .models-row .model-5 {
  background: #1045a8;
  width: 17%;
}

#our-model .models-row .model-5 p {
  color: #002977;
  font-size: 94px !important;
  line-height: 80px !important;
}

#our-model .models-row .model-6 {
  background: #c2ebff;
  width: 13%;
}

#our-model .models-row .model-6 p {
  color: #a1c2d3;
  font-size: 80px !important;
  line-height: 65px !important;
}

#our-model .models-row .model-1 h4,
#our-model .models-row .model-6 h4 {
  color: #000;
}

#our-model .models-row .model-2 h4,
#our-model .models-row .model-3 h4,
#our-model .models-row .model-4 h4,
#our-model .models-row .model-5 h4 {
  color: #fff;
}

@media screen and (max-width: 796px) {
  #our-model {
    padding: 2rem;
    margin-top: 2rem;
  }

  #our-model .content {
    text-align: center;
    align-items: center;
  }

  #our-model .content p {
    width: 100%;
  }

  #our-model .models-row {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 1rem;
    overflow: hidden;
  }

  #our-model .models-row .model {
    width: 100%;
    padding: 2rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    aspect-ratio: auto;
  }

  #our-model .models-row p {
    font-size: 60px !important;
    line-height: 45px !important;
  }
}

/* challenge */

#challenge {
  border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  width: 90%;
  margin-right: auto;
  border: 1px solid #cdefff;
}

#challenge .container {
  display: flex;
  gap: 2rem;
  padding: 2rem 2rem 2rem 0;
}

#challenge .content {
  background: #cdefff;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: start;
  justify-content: center;
  width: 70%;
  border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  padding: 1rem;
}

#challenge h1 {
  font-size: 48px;
  font-weight: bold;
}

#challenge li {
  list-style-type: disc; /* Adds bullet points */
}

@media screen and (max-width: 796px) {
  #challenge {
    margin: auto;
    border-radius: 1rem;
    margin-bottom: 2rem;
  }

  #challenge .container {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  #challenge .content {
    border-radius: 1rem;
    padding: 1.2rem;
    align-items: center;
    width: auto;
  }

  #challenge .content h1 {
    text-align: center;
  }

  #challenge .image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  #challenge .image img {
    width: 100%;
    max-width: 200px;
  }

  #challenge h1 {
    font-size: 32px;
  }

  #challenge p {
    font-size: 14px;
  }
}

/* solution */
#solution {
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background-color: #bf0707;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 70%;
  margin-left: auto;
}

@media screen and (max-width: 1200px) {
  #solution {
    width: 90%;
  }
}

#solution .container {
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem;
  padding: 2rem 0 2rem 2rem;
}

#solution .content {
  gap: 2rem;

  padding: 1rem;
  color: #fff;
}

#solution h1 {
  font-size: 48px;
  font-weight: bold;
}

#solution p {
  width: 75%;
}

#solution .width {
  display: flex;
  flex-direction: column;
  width: 90%;
  height: 100%;
  justify-content: center;
  margin-left: auto;
  gap: 1rem;
  align-items: start;
}

#solution .image {
  width: 100%;
}

#solution .image img {
  width: 100%;
}

@media screen and (max-width: 796px) {
  #solution {
    border-radius: 0;
    width: 100%;
  }

  #solution .container {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  #solution .content {
    padding: 1.2rem;
    align-items: center;
    width: 100%;
    margin-left: 0;
    text-align: center;
  }

  #solution .width {
    margin-left: 0;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  #solution .content h1 {
    text-align: center;
  }

  #solution .image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  #solution .image img {
    width: 100%;
    max-width: 90%;
  }

  #solution h1 {
    font-size: 32px;
  }

  #solution p {
    font-size: 14px;
    width: 100%;
  }
}

/* Outcomes */

#Outcomes {
  border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  background-color: #003292;
  max-width: 70%;
}

@media screen and (max-width: 1200px) {
  #Outcomes {
    width: 90%;
    max-width: 90%;
  }
}

#Outcomes .container {
  display: flex;
  gap: 2rem;
  padding: 2rem 2rem 2rem 0;
}

#Outcomes .content {
  color: white;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: start;
  justify-content: center;
  padding: 2rem;
}

#Outcomes h1 {
  font-size: 48px;
  font-weight: bold;
}

#Outcomes .image {
  width: 100%;
}

#Outcomes .image img {
  width: 100%;
}

@media screen and (max-width: 796px) {
  #Outcomes {
    border-radius: 0;
    width: 100%;
    max-width: 100%;
  }

  #Outcomes .container {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  #Outcomes .content {
    padding: 1.2rem;
    align-items: center;
    width: 100%;
    margin-left: 0;
    text-align: center;
  }

  #Outcomes h1 {
    font-size: 32px;
  }

  #Outcomes p {
    font-size: 14px;
  }

  #Outcomes .content h1 {
    text-align: center;
  }

  #Outcomes .image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  #Outcomes .image img {
    width: 100%;
    max-width: 90%;
  }
}

/* platform */

#platforms {
  padding: 5rem 3rem;
}

#platforms .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: start;
}

#platforms .container .content h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 1rem;
}

#platforms .container .content {
  border-bottom: 0.5px solid #003292;
  padding: 2rem 0;
  width: 100%;
}

#platforms .platform-row {
  display: flex;
  gap: 1rem;
  width: 100%;
}

#platforms .platform-row:nth-child(even) {
  display: flex;
  flex-direction: row-reverse;
}

#platforms .platform-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  border: 1px solid #003292;
  padding: 2rem;
  border-radius: 1rem;
  width: 30%;
}

#platforms .platform-card h1 {
  font-size: 32px;
  font-weight: bold;
}

#platforms .platform-card p {
  font-size: 18px;
}

#platforms .platform-card .platform-icon {
  width: 50px;
}

#platforms .platform-video {
  flex: 1;
  border-radius: 1rem;
  overflow: hidden;
  height: 500px;
}

#platforms .platform-video .video-wrapper {
  width: 100%;
  height: inherit;
}

#platforms .platform-video video {
  width: 100%;
}

#platforms .platform-video iframe {
  width: 100%;
  height: 100%;
}

#platforms .platform-video img {
  width: 100%;
  height: inherit;
  object-fit: cover;
}

@media screen and (max-width: 796px) {
  #platforms {
    padding: 2rem;
  }

  #platforms .platform-row {
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  #platforms .platform-card {
    width: 100%;
    gap: 1rem;
  }

  #platforms .platform-video {
    min-height: 250px;
    height: 250px;
    width: 100%;
  }

  #platforms .platform-card {
    align-items: center;
    text-align: center;
  }

  #platforms .container .content {
    text-align: center;
  }
}

/* Flexibility */

#flexibility {
  padding: 5rem 3rem;
}

#flexibility .container {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  width: 100%;
}

#flexibility .container .content {
  padding: 2rem 0;
  width: 100%;
}

#flexibility .container .content h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 1rem;
}

#flexibility .container .content p {
  font-size: 16px;
  width: 80%;
}

#flexibility .container .image {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
}

#flexibility .container .image img {
  width: 100%;
}

@media screen and (max-width: 796px) {
  #flexibility {
    padding: 2rem;
  }

  #flexibility .container {
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  #flexibility .container .content {
    width: 100%;
    text-align: center;
    padding: 0;
  }

  #flexibility .container .image {
    width: 100%;
  }

  #flexibility .container .content p {
    width: 100%;
  }
}

/* approach */

#approach {
  padding: 5rem 3rem;
  background: url("../assets/images/bgblue.webp") no-repeat center center;
  background-size: cover;
  object-fit: cover;
}

#approach .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: start;
  color: white;
  margin-top: 2rem;
}

#approach h1 {
  font-size: 42px;
  font-weight: bold;
}

#approach li {
  list-style-type: disc;
  margin-bottom: 0.4rem;
}

@media screen and (max-width: 796px) {
  #approach {
    padding: 2rem;
  }

  #approach h1 {
    font-size: 32px;
  }

  #approach p {
    font-size: 14px;
  }
}

/* blog */

.single-post-container {
  padding: 2rem;
  padding-top: 120px;
  max-width: 80%;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

.col-md-10 {
  display: flex !important;
  flex-direction: column;
  gap: 1rem;
}
.single-post-article {
  margin-bottom: 4rem;
}

.single-post-thumbnail {
  margin-bottom: 1.5rem;
}

.single-post-thumbnail img {
  width: 100%;
  height: auto;
  max-height: 462px;
  border-radius: 6px;
  object-fit: cover;
}

.single-post-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.single-post-meta {
  color: #666;
  margin-bottom: 1rem;
}

.single-post-content {
  line-height: 1.7;
  font-size: 1.1rem;
  color: #333;
}

.single-post-tags {
  margin-top: 2rem;
}

.single-post-back-link {
  display: flex;
  margin-top: 3rem;
}

.single-post-back-link a {
  background: #0e40a1;
  color: white;
  padding: 1rem 2rem;
  border-radius: 3rem;
  margin-top: 3rem;
}

/* === News Page Styles === */

.news-page-container {
  padding: 1rem;
}

.news-page-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* Category Filters */
.news-category-filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.flex-content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid #6d6e76;
}

.flex-content h1 {
  font-size: 36px;
  font-weight: bold;
}

.news-category-button {
  padding: 0.5rem 1rem;
  color: #003292;
  border-radius: 4px;
  text-decoration: none;
}

.news-category-button.active {
  background: #003292;
  color: white;
}

/* Posts Grid */
.news-posts-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.news-post-item {
  display: flex;
  padding: 1rem;
  align-items: center;
  width: 90%;
  margin-right: auto;
}

.blog-content {
  display: flex;
  width: 60%;
  padding: 1rem;
  flex-direction: column;
  gap: 1rem;
}

.news-post-item a {
  height: 100%;
  width: 40%;
}

.news-post-thumbnail img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

.news-post-title {
  margin-top: 0;
  font-size: 32px;
  font-weight: bold;
  width: auto !important;
}

.news-post-excerpt {
  margin-bottom: 0.5rem;
}

.news-post-meta {
  color: #003292;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-content p {
  color: #262626;
  font-size: 14px;
  line-height: 1.4;
}

.no-posts-message {
  font-style: italic;
  color: #999;
}

.light {
  background: #c2ebff33;
}

.dark {
  background: #bed7ff80;
}

.gray {
  background: #f2f2f2;
}

@media screen and (max-width: 1300px) {
  .news-post-item {
    flex-direction: column;
    align-items: start;
    width: auto;
  }

  .news-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
  }

  .blog-content {
    width: auto;
    padding: 0;
    margin-top: 1rem;
  }

  .blog-content p {
    font-size: 12px;
    line-height: normal;
  }

  .news-post-item a {
    width: 100%;
    font-size: 18px;
  }

  .flex-content {
    flex-direction: column;
    align-items: center;
  }

  .news-category-filters {
    align-items: center;
    justify-content: center;
  }
}

@media screen and (max-width: 700px) {
  .news-posts-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.4rem;
  }

  .single-post-container {
    max-width: 100%;
  }

  .single-post-title {
    font-size: 24px;
    line-height: normal !important;
  }
}

#phone .container {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin: auto;
  padding: 6rem 2rem;
}

#phone .content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 40%;
}

#phone .content h1 {
  font-size: 48px;
  font-weight: bold;
}

#phone .phone {
  padding: 2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 40%;
}

#phone .lighter {
  background: #c2ebff33;
}

#phone .darker {
  background: #bed7ff80;
}

#phone .grayer {
  background: white;
}

#phone .phone p {
  font-size: 20px;
  font-weight: bold;
}

#phone .phone a {
  font-size: 20px;
}

@media screen and (max-width: 1300px) {
  #phone .container {
    flex-direction: column;
    gap: 2rem;
    width: auto;
  }

  #phone .phone {
    width: auto;
  }

  #phone .content {
    width: auto;
  }
}

/* contact page */

#contact {
  background: #fff;
  padding-bottom: 4rem;
  padding-top: 120px;
}

#contact .page-title {
  text-align: center;
  padding: 3rem 0;
  background: #fff;
}

#contact .page-title h1 {
  font-size: 48px;
  font-weight: 700;
  color: #2d3748;
  margin: 0;
}

#contact .container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 4rem;
  gap: 4rem;
  margin: 0 auto;
  background: #f7f9fb;
}

#contact .contact-info {
  flex: 1;
  max-width: 400px;
}

#contact .contact-info h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 2rem;
}

#contact .info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

#contact .info-item .icon {
  font-size: 24px;
  flex-shrink: 0;
}

#contact .info-item p {
  margin: 0;
  color: #4a5568;
  font-size: 16px;
  line-height: 1.6;
}

#contact .info-item a {
  color: #2d3748;
  text-decoration: underline;
  font-size: 16px;
}

#contact .form-section {
  flex: 1;
  max-width: 600px;
}

#contact .form-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 2rem;
  line-height: 1.3;
}

#contact .form-section form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#contact .form-section input,
#contact .form-section textarea {
  padding: 1rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  color: #2d3748;
  width: 100%;
  font-family: inherit;
}

#contact .form-section input::placeholder,
#contact .form-section textarea::placeholder {
  color: #a0aec0;
}

#contact .form-section textarea {
  min-height: 180px;
  resize: vertical;
}

#contact .form-section input:focus,
#contact .form-section textarea:focus {
  outline: none;
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

#contact .form-section button {
  align-self: flex-end;
  padding: 0.875rem 2.5rem;
  background: #0ea5e9;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

#contact .form-section button:hover {
  background: #0284c7;
}

/* Contact Form Message Styles */
.form-message {
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  width: 100%;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@media screen and (max-width: 1024px) {
  #contact .container {
    flex-direction: column;
    padding: 2rem;
    gap: 3rem;
  }

  #contact .contact-info,
  #contact .form-section {
    max-width: 100%;
    width: 100%;
  }

  #contact .page-title h1 {
    font-size: 36px;
  }
}

#weserve {
  background: url("../assets/images/economic.png") no-repeat center center;
  background-size: cover;

  object-fit: cover;
  height: 100vh;
}

#weserve .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 55%;
  padding: 3rem;
  padding-top: 120px;
  color: white;
  align-items: start;
  justify-content: center;
  height: 100%;
}

#weserve .container h1 {
  font-size: 52px;
  font-weight: bold;
}

#weserve .container p {
  font-size: 16px;
  font-weight: 400;
}

#weserve .container button {
  margin-top: 2rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  background: #c2ebff;
  color: #003292;
}

#weserve .container button:hover {
  background: #003292;
  color: white;
}

@media screen and (max-width: 1300px) {
  #weserve .container {
    width: auto;
  }
}

@media screen and (max-width: 1000px) {
  #weserve .container {
    padding: 6rem 1rem;
    padding-top: 130px;
  }

  #weserve {
    height: auto;
    padding: 0;
  }
}

/* objective */

#objective {
  padding: 4rem 2rem;
  display: flex;
  gap: 3rem;
  flex-direction: column;
  max-width: 796px;
  margin: 0 auto;
}

#objective .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

#objective .cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  width: 100%;
}

#objective .cards-container .content {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #0e40a1;
  border-radius: 2rem;
}

#objective .content {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #0e40a1;
  border-radius: 2rem;
}

#objective .content h3 {
  font-size: 24px;
  font-weight: 500;
  padding: 1rem;
}

#objective .card {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  background: #0e40a1;
  border-radius: 2rem;
  color: white;
  padding: 3rem 1rem;
  width: 100%;
}

#objective .lighter {
  background: #5093ff;
}

#objective .dark {
  background: #0e40a1;
}

#objective .light {
  background: #03c3f4;
}

#objective .bll {
  border: 1p solid #5093ff;
}

#objective .bl {
  border: 1px solid #03c3f4;
}

#objective .header {
  display: flex;
  align-items: start;
}

#objective .header h1 {
  font-size: 52px;
  font-weight: bold;
}

@media screen and (max-width: 1000px) {
  #objective .container {
    flex-direction: column;
  }

  #objective .cards-container {
    flex-direction: column;
    width: auto;
  }

  #objective .cards-container .content {
    width: auto;
    margin-bottom: 1rem;
  }

  #objective .content {
    width: auto;
  }

  #objective .header {
    align-items: center;
  }

  #objective .header h1 {
    text-align: center;
  }

  #members .container,
  #objective {
    padding: 2rem 1rem;
  }
}

/* collaborating */

#collaborating {
  background: url("../assets/images/how1.png") no-repeat center center;
  background-size: cover;
  object-fit: cover;
  height: 100vh;
  color: white;
}

#collaborating .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: start;
  justify-content: center;
  height: 100%;
  padding: 2rem;
}

#collaborating .container h1 {
  font-size: 52px;
  font-weight: 700;
}

#collaborating .container p {
  font-size: 16px;
  width: 40%;
}

#collaborating .container button {
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  background: #c2ebff;
  color: #003292;
  margin-top: 2rem;
}

#collaborating .container button:hover {
  background: #003292;
  color: white;
}

@media screen and (max-width: 1300px) {
  #collaborating .container p {
    width: auto;
  }
}

/* alignment */

#alignment {
  width: 90%;
  margin-left: auto;
  margin-top: 3rem;
}

#alignment .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ed4b4a;
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border-right: 0px;
  gap: 3rem;
}

#alignment .content {
  padding-left: 5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: start;
  width: 60%;
}

#alignment .content h1 {
  font-size: 48px;
  font-weight: 700;
}

#alignment .container img {
  width: 40%;
}

@media screen and (max-width: 1300px) {
  #alignment {
    width: auto;
    border-radius: 0;
  }

  #alignment .container {
    border-radius: 0;
    padding: 1rem;
    padding-right: 0;
  }
}

@media screen and (max-width: 1000px) {
  #alignment .container {
    flex-direction: column;
  }

  #alignment .content {
    align-items: center;
    width: auto;
    padding: 1rem;
  }

  #alignment .content p {
    text-align: center;
  }

  #alignment .content h1 {
    text-align: center;
    font-size: 38px;
  }

  #alignment .container img {
    width: 400px;
    height: 400px;
    border-radius: 50%;
  }
}
/* math */

#math {
  width: 70%;
  margin: auto;
}

#math .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  border-radius: 1000px;
  padding: 4rem;
  background: #003292;
  color: white;
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

#math .container button {
  padding: 1rem 2rem;
  border-radius: 50px;
  border: 1px solid #c2ebff;
  background: #c2ebff;
  color: #003292;
}
#math .container button:hover {
  color: #003292;
  border: 1px solid #003292;
  background: white;
}

#math .container p {
  font-size: 22px;
  width: 50%;
}

#math .mathe {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
}

#math .input {
  padding: 1rem;
  border-radius: 1rem;
  white-space: nowrap;
}

#math .dark {
  background: #c2ebff;
  color: #003292;
}
#math .light {
  background: #deebff;
  color: #333333;
}
#math .gray {
  background: white;
  color: black !important;
}
#math .red {
  background: #ed4b4a;
}

@media screen and (max-width: 1300px) {
  #math {
    width: auto;
  }
  #math .container {
    border-radius: 0;
  }

  #math .container p {
    width: auto;
  }

  #math .mathe {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}

/* technology */

#technology {
  padding: 6rem 3rem;
  background: #f7f7f7;
}
#technology .container {
  display: flex;
  gap: 3rem;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}

#technology .content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: start;
  width: 50%;
}

#technology .header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
#technology .header h1 {
  font-size: 48px;
  font-weight: bold;
}

#technology .text li {
  font-size: 20px;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 1rem;
  list-style-type: disc; /* Adds bullet points */
}

#technology .text p {
  margin-bottom: 1rem;
}

@media screen and (max-width: 1300px) {
  #technology .container {
    flex-direction: column;
    width: auto;
  }

  #technology .content {
    width: auto;
  }

  #technology .image {
    width: 100%;
    padding: 1rem;
  }

  #technology .image img {
    width: 100%;
  }
}
/* whatwedohero */

#whatwedohero {
  padding-top: 120px;
  margin-bottom: 3rem;
  background-color: #003292;
  height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

#whatwedohero .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 3rem;
}

#whatwedohero .left-ring {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

#whatwedohero .content {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 1rem;
  width: 50%;
  padding: 3rem;
  color: white;
  z-index: 1;
}

#whatwedohero .content button {
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  background: #c2ebff;
  color: #003292;
  transition: 0.3s;
}

#whatwedohero .content button:hover {
  background: #003292;
  color: white;
}

#whatwedohero .content h1 {
  font-size: 52px;
  font-weight: 700;
}

#whatwedohero .image {
  width: 30%;
  min-height: 300px;
}

#whatwedohero .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#promo-video h2 {
  font-size: 48px;
  margin-bottom: 2rem;
}

@media screen and (max-width: 796px) {
  #whatwedohero {
    height: auto;
    padding-top: 6rem;
  }

  #whatwedohero .container {
    flex-direction: column;
    padding-top: 0;
  }

  #whatwedohero .image img {
    border-radius: 50%;
  }

  #whatwedohero .content p {
    text-align: center;
    font-size: 14px;
  }

  #whatwedohero .content h1 {
    text-align: center;
  }

  #whatwedohero .content {
    padding: 1rem;
    align-items: center;
    width: auto;
  }

  #whatwedohero .content h1 {
    font-size: 28px;
  }

  #promo-video h2 {
    font-size: 28px;
  }

  #whatwedohero .image {
    padding: 1rem;
    width: 100%;
    z-index: 1;
  }
}

/* section id="approaches" */

#approaches {
  overflow: hidden;
  flex-direction: column;
  display: flex;
  gap: 2rem;
}

.approach-section {
  padding: 2rem 0;
  max-width: 80%;
}

.approach-section:nth-child(even) {
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  overflow: hidden;
  margin-left: auto;
}

.approach-section:nth-child(odd) {
  border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  overflow: hidden;
  padding-left: 4rem;
}

.approach-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  padding: 0 2rem;
}

.approach-wrapper.odd {
  flex-direction: row-reverse;
  justify-content: flex-start;
}

.approach-content {
  flex: 1 1 45%;
}

.approach-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.approach-content p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 60%;
}

.approach-icon img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  border-radius: 50%;
}

.approach-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle-img {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
}

.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .approach-wrapper {
    flex-direction: column !important;
    text-align: center;
  }

  .approach-section {
    padding: 1rem !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    max-width: 100%;
  }

  .approach-content,
  .approach-image {
    flex: 1 1 100%;
  }

  .approach-content p {
    max-width: 100%;
  }

  .circle-img {
    width: 240px;
    height: 240px;
    margin-bottom: 20px;
  }
}

/* <section id="sustain-funding"> */
#sustain-funding {
  margin-top: 3rem;
  background-color: #ee52511a;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  height: 80vh;
}

.funding-right-ring {
  position: absolute;
  top: 0;
  right: 0;
}

.funding-left-ring {
  position: absolute;
  top: 0;
  left: 0;
}

#sustain-funding .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 0 3rem 6rem;
  width: 100%;
}

#sustain-funding .container .approach-image {
  width: 30%;
  min-height: 300px;
}

#sustain-funding .container .approach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#sustain-funding .container .sustain-image {
  width: 30% !important;
}

#sustain-funding .container .sustain-image .sustain-circle-img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

#sustain-funding .container .sustain-image img {
  width: auto;
  height: 100%;
}

#sustain-funding .container .content {
  width: 50%;
  padding: 6rem;
  color: white;
  z-index: 1;
  background-color: #bf0707;
  border-bottom-left-radius: 1000px;
  border-top-left-radius: 1000px;
}

#sustain-funding .container .content h1 {
  font-size: 52px;
  font-weight: 700;
}

#sustain-funding .container .content p {
  margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  #sustain-funding {
    height: auto;
  }

  #sustain-funding .container {
    padding: 2rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  #sustain-funding .container .content {
    width: auto;
    padding: 2rem;
    border-bottom-left-radius: 1rem;
    border-top-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    border-top-right-radius: 1rem;
  }

  #sustain-funding .container .sustain-image {
    width: 100% !important;
    min-height: auto !important;
    z-index: 1;
  }
}

/* .press-conference-section  */

.press-conference-section {
  margin-top: 4rem;
  padding: 2rem 1rem;
  width: 90%;
  margin: auto;
}
.press-link {
  display: inline-block;
  background: white;
  padding: 1rem 2rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  text-decoration: none;
  color: #111;
  transition: 0.3s ease;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
}

.press-link:hover {
  background-color: #f9f9f9;
  border-color: #999;
}

.press-two-column {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-top: 2rem;
}

.featured-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
}

.press-featured {
  width: 60%;
  min-width: 300px;
  border: 1px solid #dfe0e4;
  border-radius: 1rem;
  padding: 1.5rem;
}

.press-featured img {
  width: 100%;
  object-fit: cover;
  height: 300px;
}

.featured-content h3 {
  font-size: 32px;
  line-height: normal !important;
  font-weight: 700;
  margin-top: 2rem;
  width: 80%;
}

.read-more-btn {
  background: #003292;
  color: white;
  border-radius: 50px;
  border: 1px solid #003292;
  padding: 1rem 2rem;
  transition: 0.3s;
}

.read-more-btn:hover {
  color: #003292;
  border: 1px solid #003292;
  background: white;
}

.press-list {
  width: 40%;
  min-width: 300px;
  flex-direction: column;
  display: flex;
  justify-content: space-between;
}

.press-list-item {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.press-list-item p {
  text-align: start;
}

.press-list-item h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: normal !important;
}

.press-list-item {
  padding: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.press-list-item:hover {
  background-color: #c2ebff80;
}

.read-more-btn {
  transition: background 0.3s ease;
}

.press-list-item.active {
  background-color: #c2ebff80;
}

@media screen and (max-width: 1000px) {
  .press-two-column {
    flex-direction: column;
  }

  #featured-excerpt {
    font-size: 14px;
  }

  .press-list-item p {
    font-size: 14px;
  }

  .press-featured {
    width: auto;
  }

  .press-list {
    width: auto;
  }

  .featured-content h3 {
    width: auto;
    font-size: 22px;
  }

  .press-list-item h4 {
    font-size: 18px;
  }
}

#latest-blogs {
  padding: 3rem;
}

#latest-blogs .container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

#latest-blogs .header h2 {
  font-size: 48px;
  font-weight: 700;
}

#latest-blogs .blog-posts {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: stretch;
  min-height: 400px;
}

#latest-blogs .blog-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  flex-shrink: 0;
}

#latest-blogs .blog-image img {
  object-fit: cover;
  width: 100% !important;
  height: 100% !important;
  display: block;
  max-width: none;
  max-height: none;
}

#latest-blogs .blog-image:empty::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
}

#latest-blogs .blog-content {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  width: 100%;
  padding: 0;
  flex: 1;
  min-height: 0;
}

#latest-blogs .blog-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  min-width: 0;
  width: calc(33.333% - 1.33rem);
  height: 100%;
}

#latest-blogs .blog-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  min-height: 2.6em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#latest-blogs .blog-description {
  margin: 0;
  line-height: 1.5;
  flex: 1;
}

/* Force equal image sizes - override any WordPress defaults */
#latest-blogs .blog-image img,
#latest-blogs .blog-image .wp-post-image,
#latest-blogs .blog-image .attachment-medium {
  width: 100% !important;
  height: 300px !important;
  object-fit: cover !important;
  display: block !important;
  max-width: none !important;
  max-height: none !important;
}

/* Tablet and smaller desktop */
@media screen and (max-width: 1000px) {
  #latest-blogs {
    padding: 2rem;
  }

  #latest-blogs .blog-posts {
    flex-direction: column;
    gap: 1.5rem;
  }

  #latest-blogs .blog-card {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  #latest-blogs .header h2 {
    font-size: 36px;
  }

  #latest-blogs .blog-title {
    font-size: 20px;
    min-height: 2.4em;
  }
}

/* Mobile landscape */
@media screen and (max-width: 768px) {
  #latest-blogs {
    padding: 1.5rem;
  }

  #latest-blogs .header h2 {
    font-size: 28px;
  }

  #latest-blogs .blog-image {
    height: 250px;
  }

  #latest-blogs .blog-image img,
  #latest-blogs .blog-image .wp-post-image,
  #latest-blogs .blog-image .attachment-medium {
    height: 250px !important;
  }

  #latest-blogs .blog-title {
    font-size: 18px;
    min-height: 2.2em;
  }

  #latest-blogs .blog-description {
    font-size: 14px;
  }
}

/* Mobile portrait */
@media screen and (max-width: 480px) {
  #latest-blogs {
    padding: 1rem;
  }

  #latest-blogs .header h2 {
    font-size: 24px;
  }

  #latest-blogs .blog-image {
    height: 200px;
  }

  #latest-blogs .blog-image img,
  #latest-blogs .blog-image .wp-post-image,
  #latest-blogs .blog-image .attachment-medium {
    height: 200px !important;
  }

  #latest-blogs .blog-title {
    font-size: 16px;
    min-height: 2em;
  }

  #latest-blogs .blog-description {
    font-size: 13px;
  }

  #latest-blogs .blog-posts {
    gap: 1rem;
  }
}

#newspage {
  padding-top: 120px;
  background: url("../assets/images/newspage.png") no-repeat center center;
  background-size: cover;
  object-fit: cover;
  padding-bottom: 4rem;
}

#newspage .container {
  display: flex;
  width: 97%;
  margin-left: auto;
  align-items: center;
  justify-content: end;
  gap: 3rem;
}

#newspage .container .image {
  display: flex;
  width: 40%;
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  overflow: hidden;
}

#newspage .container .image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

#newspage .content {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

#newspage .content h3 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 300;
}

#newspage .content h1 {
  font-size: 52px;
  font-weight: 700;
}

#newspage .content p {
  width: 70%;
  font-size: 16px;
}

@media (max-width: 1090px) {
  #newspage .container {
    flex-direction: column;
  }

  #newspage .content {
    width: auto;
    padding: 1rem;
    align-items: center;
    text-align: center;
  }

  #newspage .image {
    width: 100%;
    display: flex;
    justify-content: end;
  }

  #newspage .container .image {
    width: 100% !important;
  }
}

@media (max-width: 796px) {
  #newspage .image img {
    width: 100%;
  }

  #newspage .content h1 {
    font-size: 36px;
    font-weight: 700;
  }

  #newspage .content p {
    width: auto;
  }
}

#table {
  padding: 3rem;
  margin-top: 6rem;
}

#table .container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

#table .header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

#table .header h1 {
  font-size: 62px;
  font-weight: bold;
}

#table .header p {
  font-size: 18px;
  width: 60%;
}

#table .content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

#table .card {
  display: flex;
  align-items: center;
  justify-content: start;
  text-align: center;
  flex-direction: column;

  padding-bottom: 2rem;
}

#table .card h1 {
  width: 100%;
  padding: 1rem;
}

#table .card img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
}

@media screen and (max-width: 1260px) {
  #table .container {
    text-align: center;
    align-items: center;
  }

  #table .content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  #table {
    padding: 2rem;
  }

  #table .header p {
    width: auto;
  }

  #table .header h1 {
    font-size: 42px;
  }

  #table .header p {
    font-size: 14px;
  }

  #table .card h1 {
    font-size: 20px;
  }

  #table .card img {
    width: 300px;
  }
}

@media screen and (max-width: 769px) {
  #table .content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    margin-bottom: 0;
  }

  #table {
    padding: 1rem;
  }

  #table .card h1 {
    font-size: 14px !important;
    padding-bottom: 0.2rem;
  }

  #table .card p {
    font-size: 12px !important;
  }

  #table .card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
}

#joinInnovative {
  background: url("../assets/images/framer9.png") no-repeat center center;
  background-size: cover;
  object-fit: cover;
  height: 80vh;
  width: 100%;
  color: white;
}

#joinInnovative .container {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: self-start;
  justify-content: center;
  height: 100%;
}

#joinInnovative .container h3 {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

#joinInnovative .container h2 {
  font-size: 44px;
}
#joinInnovative .container button {
  background: white;
  color: black;
  border-radius: 50px;
  border: none;
  padding: 1rem 2rem;
  font-size: 16px;
  transition: 0.3s;
}

#joinmission .container button:hover {
  background: #003292;
  color: white;
}

#joinmission {
  height: 80vh;
  width: 100%;
  color: white;
  margin-top: 6rem;
  position: relative;
}

#joinmission .container {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: self-start;
  justify-content: center;
  height: 100%;
  z-index: 4;
  position: relative;
}

#joinmission .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #00000098 25%, #32323263);
  z-index: 1;
}

#joinmission .container h3 {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

#joinmission .container h2 {
  font-size: 44px;
}
#joinmission .container button {
  background: white;
  color: black;
  border-radius: 50px;
  border: none;
  padding: 1rem 2rem;
  font-size: 16px;
  transition: 0.3s;
}

#joinmission .container button:hover {
  background: #003292;
  color: white;
}

#joinmission .container p {
  max-width: 60%;
}

@media screen and (max-width: 769px) {
  #joinmission .container {
    padding: 2rem;
    align-items: center;
  }

  #joinmission .container div {
    text-align: center;
    align-items: center;
    justify-content: start;
  }

  #joinmission .container p {
    max-width: 100%;
  }
}

#board {
  padding: 2rem;
}

#board .content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

#board .header h1 {
  font-size: 54px;
  padding: 1rem;
  font-weight: 600;
}

#board .card {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.6rem;
  border-bottom: 1px solid #003292;
}

#board .card h1 {
  color: #003292;
}

#board .card p {
  text-decoration: underline;
  font-size: 20px;
}

#board .card h2 {
  padding-bottom: 1rem;
  font-weight: 400;
  font-size: 18px;
}

@media screen and (max-width: 1100px) {
  #board {
    padding: 1rem;
  }

  #board .content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 700px) {
  #board .content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  #board .card h1 {
    text-decoration: underline;
    font-size: 16px !important;
  }

  #board .card p {
    text-decoration: underline;
    font-size: 14px !important;
  }

  #board .card h2 {
    padding-bottom: 1rem;
    font-weight: 400;
    font-size: 16px !important;
  }
}

#careers {
  padding-top: 150px;
  width: 100%;
  margin: auto;
  height: 80vh;
}

#careers .container {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
}

#careers .content {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 2rem 3rem 6rem;
  width: 70%;
  background-color: #cdefff;
  border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  height: 100%;
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
}

#careers .content h1 {
  font-size: 44px;
}

#careers .content p {
  font-size: 16px;
  width: 80%;
}

#careers .wrap {
  display: flex;
  gap: 2rem;
  align-items: stretch;
  justify-content: flex-end;
  position: relative;
}

#careers .image {
  width: 40%;
  max-height: 600px;
  overflow: hidden;
  object-fit: cover;
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  z-index: 1;
}

#careers .image img {
  width: 100%;
}

@media screen and (max-width: 1400px) {
  #careers {
    padding-top: 50px;
    width: auto;
    margin: auto;
    height: auto;
  }
}

@media screen and (max-width: 796px) {
  #careers .wrap {
    flex-direction: column;
  }

  #careers .content {
    width: auto;
    position: relative;
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    align-items: center;
  }

  #careers .content p {
    width: auto;
  }
}

@media screen and (max-width: 700px) {
  #careers .image {
    width: 100%;
  }

  #careers .image img {
    width: 100%;
  }

  #careers .content p {
    font-size: 14px;
  }
}

#ems {
  background: #1d52d8;
  margin-top: 2rem;
}

#ems .container {
  padding: 5rem 6rem;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: space-between;
  align-items: stretch;
}

#ems .card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: white;
  width: 50%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: auto;
}

#ems .card h1 {
  font-size: 48px;
  line-height: 1;
  width: 70%;
}

#ems .card ul {
  width: 90%;
  list-style-type: disc;
  font-size: 16px;
  gap: 1rem;
  margin: 0;
}

#ems .card li {
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
  list-style-position: inside;
}

#ems .card img {
  position: absolute;
  top: 0;
  right: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 700px) {
  #ems .card p {
    width: auto;
    font-size: 14px;
  }

  #ems .card li {
    font-size: 14px;
  }

  #ems .card h1 {
    width: auto;
    font-size: 20px;
  }

  #ems .container {
    padding: 3rem 1rem;
  }
}

#jobs {
  width: 90%;
  margin: auto;
  padding: 2rem;
  margin-top: 6rem;
}

#jobs .container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

#jobs .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

#jobs .list-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #bbe9ff;
  padding: 2rem;
  border-radius: 10px;
  flex: 1;
  box-shadow: 0px 5px 14px 0px #080f340a;
  border: 1px solid #08c3f4;
}

#jobs .list-item h3 {
  font-size: 32px;
  font-weight: 700;
  color: #002d83;
}

#jobs .list-item .view-more {
  font-size: 20px;
  font-weight: 400;
  color: #3c87ff;
  margin-top: auto;
  text-decoration: underline;
}

@media screen and (max-width: 700px) {
  #jobs .container {
    gap: 1rem;
    text-align: center;
    align-items: center;
  }

  #jobs {
    width: 100%;
    padding: 1rem;
    margin-top: 2rem;
  }

  #jobs .list {
    grid-template-columns: repeat(1, 1fr);
  }

  #jobs .list-item {
    width: 100%;
    padding: 1rem;
  }

  #jobs .list-item h3 {
    font-size: 20px;
  }

  #ems .container {
    flex-direction: column;
    gap: 1rem;
  }

  #ems .card {
    width: 100%;
    padding: 1rem;
    min-height: 250px;
    text-align: center;
    align-items: center;
  }
}

/* Promise section */
#promise {
  padding: 0 5rem;
  position: relative;
  overflow: hidden;
}

#promise .container {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 4rem 0 4rem 0;
}

#promise .promise-content {
  display: flex;
  gap: 12rem;
  align-items: center;
  min-height: 100vh;
}

#promise .promise-left {
  flex: 0 0 45%;
  padding-right: 3rem;
  max-width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
}

#promise .promise-right {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

#promise .curve-edge {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 200px;
  z-index: 1;
}

#promise .curve-edge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

#promise .promise-left h1 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 48px;
  line-height: 62px;
  letter-spacing: 0%;
  color: #000;
  margin-bottom: 1.5rem;
}

#promise .promise-left p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000;
}

#promise .top-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 3rem;
  justify-content: center;
  margin-bottom: 1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

#promise .top-logos .logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

#promise .top-logos .logo-item:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

#promise .top-logos .logo-item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

#promise .top-logos .logo-item:nth-child(3) {
  grid-column: 1 / 3;
  grid-row: 2;
  justify-self: center;
}

#promise .grid-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: transparent;
  margin-top: 2rem;
}

#promise .grid-item {
  background: transparent;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  min-height: 120px;
  justify-content: center;
}

#promise .grid-item:nth-child(1) {
  border-right: 1px solid #003292;
}

#promise .grid-item:nth-child(2) {
}

#promise .grid-item:nth-child(3) {
  border-top: 1px solid #003292;
  border-right: 1px solid #003292;
}

#promise .grid-item:nth-child(4) {
  border-top: 1px solid #003292;
}

#promise .grid-item h3 {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: #003292;
  margin: 0;
}

#promise .grid-item img {
  width: auto;
  height: auto;
  object-fit: contain;
}

#promise .grid-item:nth-child(1) img {
  width: 201.17px;
  height: 45.63px;
}

#promise .grid-item:nth-child(2) img {
  width: 151px;
  height: 39.32px;
}

#promise .grid-item:nth-child(3) img {
  width: 141px;
  height: 50px;
}

#promise .text-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

#promise .text-logo .line1 {
  font-size: 13px;
  font-weight: bold;
  color: #000;
  letter-spacing: 0.5px;
}

#promise .text-logo .line2 {
  font-size: 13px;
  font-weight: bold;
  color: #003292;
  letter-spacing: 0.5px;
}

#promise .grid-item:nth-child(4) .text-logo {
  width: 100px;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Responsive styles for promise section */
@media screen and (max-width: 768px) {
  #promise {
    padding: 2rem 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 3rem;
  }

  #promise .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 1rem;
  }

  #promise .promise-content {
    flex-direction: column;
    gap: 4rem;
    min-height: auto;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  #promise .promise-left {
    padding-right: 0;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  #promise .promise-right {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }

  #promise .curve-edge {
    display: none;
  }

  #promise .promise-left h1 {
    font-size: 28px;
    line-height: 36px;
    max-width: 100%;
    text-align: center;
  }

  #promise .promise-left p {
    font-size: 16px;
    max-width: 100%;
    text-align: center;
  }

  #promise .top-logos {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    max-width: 300px;
    margin: 0 auto;
  }

  #promise .top-logos .logo-item {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #promise .top-logos .logo-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  #promise .top-logos .logo-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  #promise .top-logos .logo-item:nth-child(3) {
    grid-column: 1 / 3;
    grid-row: 2;
    justify-self: center;
  }

  #promise .top-logos .logo-item:nth-child(1) img {
    width: 150px;
    height: 26px;
  }

  #promise .top-logos .logo-item:nth-child(2) img {
    width: 125px;
    height: 32px;
  }

  #promise .top-logos .logo-item:nth-child(3) img {
    width: 150px;
    height: 58px;
  }

  #promise .grid-section {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  #promise .grid-item {
    padding: 1.5rem 1rem;
    border: none !important;
    min-height: auto;
  }

  #promise .grid-item:nth-child(1),
  #promise .grid-item:nth-child(2),
  #promise .grid-item:nth-child(3),
  #promise .grid-item:nth-child(4) {
    border: none !important;
  }

  #promise .grid-item:nth-child(1) img {
    width: 140px;
    height: 32px;
  }

  #promise .grid-item:nth-child(2) img {
    width: 105px;
    height: 27px;
  }

  #promise .grid-item:nth-child(3) img {
    width: 98px;
    height: 35px;
  }

  #promise .grid-item:nth-child(4) .text-logo {
    width: 70px;
    height: 35px;
  }

  #promise .grid-item h3 {
    font-size: 14px;
    margin-bottom: 1rem;
  }
}

/* Tablet styles for promise section */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #promise {
    padding: 3rem 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 4rem;
  }

  #promise .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 2rem;
  }

  #promise .promise-content {
    flex-direction: column;
    gap: 5rem;
    min-height: auto;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  #promise .promise-left {
    padding-right: 0;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }

  #promise .promise-right {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }

  #promise .curve-edge {
    display: none;
  }

  #promise .promise-left h1 {
    font-size: 36px;
    line-height: 46px;
    max-width: 100%;
    text-align: center;
  }

  #promise .promise-left p {
    font-size: 18px;
    max-width: 100%;
    text-align: center;
  }

  #promise .promise-left {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  #promise .top-logos {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    max-width: 400px;
    margin: 0 auto;
  }

  #promise .top-logos .logo-item {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #promise .top-logos .logo-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  #promise .top-logos .logo-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  #promise .top-logos .logo-item:nth-child(3) {
    grid-column: 1 / 3;
    grid-row: 2;
    justify-self: center;
  }

  #promise .top-logos .logo-item:nth-child(1) img {
    width: 180px;
    height: 31px;
  }

  #promise .top-logos .logo-item:nth-child(2) img {
    width: 150px;
    height: 39px;
  }

  #promise .top-logos .logo-item:nth-child(3) img {
    width: 180px;
    height: 70px;
  }

  #promise .grid-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  #promise .grid-item {
    padding: 1.5rem 1rem;
    border: none;
    min-height: auto;
  }

  #promise .grid-item:nth-child(1) img {
    width: 160px;
    height: 36px;
  }

  #promise .grid-item:nth-child(2) img {
    width: 120px;
    height: 31px;
  }

  #promise .grid-item:nth-child(3) img {
    width: 110px;
    height: 39px;
  }

  #promise .grid-item:nth-child(4) .text-logo {
    width: 80px;
    height: 40px;
  }

  #promise .grid-item h3 {
    font-size: 16px;
    margin-bottom: 1.5rem;
  }
}

/* Large tablet and small desktop styles for promise section */
@media screen and (min-width: 1025px) and (max-width: 796px) {
  #promise {
    padding: 3rem 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 4rem;
  }

  #promise .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 2rem;
  }

  #promise .promise-content {
    flex-direction: column;
    gap: 5rem;
    min-height: auto;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  #promise .promise-left {
    padding-right: 0;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }

  #promise .promise-right {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }

  #promise .curve-edge {
    display: none;
  }

  #promise .promise-left h1 {
    font-size: 40px;
    line-height: 52px;
    max-width: 100%;
    text-align: center;
  }

  #promise .promise-left p {
    font-size: 18px;
    max-width: 100%;
    text-align: center;
  }

  #promise .promise-left {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  #promise .top-logos {
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    max-width: 400px;
    margin: 0 auto;
  }

  #promise .top-logos .logo-item {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #promise .top-logos .logo-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  #promise .top-logos .logo-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  #promise .top-logos .logo-item:nth-child(3) {
    grid-column: 1 / 3;
    grid-row: 2;
    justify-self: center;
  }

  #promise .top-logos .logo-item:nth-child(1) img {
    width: 160px;
    height: 28px;
  }

  #promise .top-logos .logo-item:nth-child(2) img {
    width: 135px;
    height: 35px;
  }

  #promise .top-logos .logo-item:nth-child(3) img {
    width: 160px;
    height: 62px;
  }

  #promise .grid-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  #promise .grid-item {
    padding: 1.5rem 1rem;
    border: none;
    min-height: auto;
  }

  #promise .grid-item:nth-child(1) img {
    width: 140px;
    height: 32px;
  }

  #promise .grid-item:nth-child(2) img {
    width: 105px;
    height: 27px;
  }

  #promise .grid-item:nth-child(3) img {
    width: 98px;
    height: 35px;
  }

  #promise .grid-item:nth-child(4) .text-logo {
    width: 70px;
    height: 35px;
  }

  #promise .grid-item h3 {
    font-size: 15px;
    margin-bottom: 1.5rem;
  }
}

/* About page new sections */

#equitable-outcomes {
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  width: 90%;
  margin-left: auto;
  border: 1px solid #c2ebff;
  background: #c2ebff;
  margin-top: 2rem;
  padding: 3rem;
}

#equitable-outcomes .container {
  display: flex;
  flex-direction: row-reverse;
  gap: 3rem;
  padding: 2rem 0 2rem 2rem;
}

#equitable-outcomes .image {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#equitable-outcomes .image img {
  width: 100%;
  border-radius: 50%;
}

#equitable-outcomes .content {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: start;
  justify-content: center;
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  padding: 2rem;
}

#equitable-outcomes .content p {
  max-width: 550px;
}

#equitable-outcomes .content h1 {
  max-width: 550px;
}

#equitable-outcomes h1 {
  font-size: 52px;
  font-weight: bold;
}

#equitable-outcomes button {
  padding: 1rem 2rem;
  border-radius: 50px;
  border: 1px solid #003292;
  background: #003292;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

#equitable-outcomes button:hover {
  color: #003292;
  border: 1px solid #003292;
  background: white;
}

#collaboration {
  border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  width: 90%;
  margin-right: auto;
  border: 1px solid #f2f2f2;
  background: #f2f2f2;
  padding: 3rem;
}

#collaboration .container {
  display: flex;
  gap: 3rem;
  padding: 2rem 2rem 2rem 0;
}

#collaboration .image {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#collaboration .image img {
  width: 100%;
  border-radius: 50%;
}

#collaboration .content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: start;
  justify-content: center;
  width: 70%;
  border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  padding: 2rem;
}

#collaboration .content p {
  max-width: 550px;
}

#collaboration .content h1 {
  max-width: 550px;
}

#collaboration h1 {
  font-size: 48px;
  font-weight: bold;
}

#collaboration button {
  padding: 1rem 2rem;
  border-radius: 50px;
  border: 1px solid #003292;
  background: #003292;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

#collaboration button:hover {
  color: #003292;
  border: 1px solid #003292;
  background: white;
}

#students-first {
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  width: 90%;
  margin-left: auto;
  border: 1px solid #c2ebff;
  background: #c2ebff;
  padding: 3rem;
}

#students-first .container {
  display: flex;
  flex-direction: row-reverse;
  gap: 3rem;
  padding: 2rem 0 2rem 2rem;
}

#students-first .image {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#students-first .image img {
  width: 100%;
  border-radius: 50%;
}

#students-first .content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: start;
  justify-content: center;
  width: 70%;
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  padding: 2rem;
}

#students-first .content p {
  max-width: 550px;
}

#students-first .content h1 {
  max-width: 550px;
}

#students-first h1 {
  font-size: 48px;
  font-weight: bold;
}

#students-first button {
  padding: 1rem 2rem;
  border-radius: 50px;
  border: 1px solid #003292;
  background: #003292;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

#students-first button:hover {
  color: #003292;
  border: 1px solid #003292;
  background: white;
}

/* Responsive styles for about page sections */
@media screen and (max-width: 796px) {
  #equitable-outcomes {
    margin: auto;
    border-radius: 1rem;
    margin-bottom: 2rem;
  }

  #equitable-outcomes .container {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  #equitable-outcomes .content {
    border-radius: 1rem;
    padding: 1.2rem;
    align-items: center;
    width: auto;
  }

  #equitable-outcomes .content h1 {
    text-align: center;
    font-size: 32px;
  }

  #equitable-outcomes .image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  #equitable-outcomes .image img {
    width: 100%;
  }

  #equitable-outcomes p {
    font-size: 14px;
  }

  #collaboration {
    margin: auto;
    border-radius: 1rem;
    margin-bottom: 2rem;
  }

  #collaboration .container {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  #collaboration .content {
    border-radius: 1rem;
    padding: 1.2rem;
    align-items: center;
    width: auto;
  }

  #collaboration .content h1 {
    text-align: center;
    font-size: 32px;
  }

  #collaboration .image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  #collaboration .image img {
    width: 100%;
  }

  #collaboration p {
    font-size: 14px;
  }

  #students-first {
    margin: auto;
    border-radius: 1rem;
    margin-bottom: 2rem;
  }

  #students-first .container {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  #students-first .content {
    border-radius: 1rem;
    padding: 1.2rem;
    align-items: center;
    width: auto;
  }

  #students-first .content h1 {
    text-align: center;
    font-size: 32px;
  }

  #students-first .image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  #students-first .image img {
    width: 100%;
  }

  #students-first p {
    font-size: 14px;
  }
}

/* Economic Mobility section */
#economic-mobility {
  background: #003292;
  color: #ffffff;
  overflow: visible;
  padding: 0 5rem;
}

#economic-mobility .container {
  max-width: 100%;
  margin: 0;
}

#economic-mobility .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 500px;
  overflow: visible;
}

#economic-mobility .text-content {
  padding: 4rem 0 4rem 0;
  max-width: 50%;
}

#economic-mobility .text-content h1 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 48px;
  line-height: 62px;
  letter-spacing: 0%;
  color: #ffffff;
  margin-bottom: 1rem;
}

#economic-mobility .text-content h2 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #ffffff;
  margin-bottom: 2rem;
}

#economic-mobility .text-content p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

#economic-mobility .image-content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100vh;
  width: 600px;
  margin-top: -250px;
  margin-bottom: -250px;
}

#economic-mobility .circle-container {
  position: absolute;
  left: 2rem;
  z-index: 999;
  border-radius: 50%;
  width: 600px;
  height: 600px;
  background: url("../assets/images/mobility.png") center center;
  background-size: cover;
  overflow: hidden;
  margin-top: -250px;
  margin-bottom: -250px;
}

/* Responsive styles for economic mobility section */
@media screen and (max-width: 768px) {
  #economic-mobility {
    padding: 2rem 1rem;
  }

  #economic-mobility .content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    min-height: auto;
  }

  #economic-mobility .text-content {
    padding: 0;
    flex: 0 0 100%;
    order: 2;
    max-width: 100%;
  }

  #economic-mobility .image-content {
    flex: 0 0 100%;
    height: 300px;
    margin-top: -50px;
    margin-bottom: 0;
    order: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #economic-mobility .circle-container {
    position: relative;
    left: 0;
    transform: translateY(-10%);
    width: 280px;
    height: 280px;
    margin-top: 0;
    margin-bottom: 0;
  }

  #economic-mobility .text-content h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #economic-mobility .text-content h2 {
    font-size: 16px;
  }

  #economic-mobility .text-content p {
    font-size: 16px;
  }
}

/* Tablet styles for economic mobility section */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #economic-mobility {
    padding: 3rem 2rem;
  }

  #economic-mobility .content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    min-height: auto;
  }

  #economic-mobility .text-content {
    padding: 0;
    flex: 0 0 100%;
    order: 2;
    max-width: 100%;
  }

  #economic-mobility .image-content {
    flex: 0 0 100%;
    height: 400px;
    margin-top: -75px;
    margin-bottom: 0;
    order: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #economic-mobility .circle-container {
    position: relative;
    left: 0;
    transform: translateY(-10%);
    width: 380px;
    height: 380px;
    margin-top: 0;
    margin-bottom: 0;
  }

  #economic-mobility .text-content h1 {
    font-size: 36px;
    line-height: 46px;
  }

  #economic-mobility .text-content h2 {
    font-size: 18px;
  }

  #economic-mobility .text-content p {
    font-size: 18px;
  }
}

/* Large tablet and small desktop styles for economic mobility section */
@media screen and (min-width: 1025px) and (max-width: 796px) {
  #economic-mobility {
    padding: 3rem 2rem;
  }

  #economic-mobility .content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    min-height: auto;
  }

  #economic-mobility .text-content {
    padding: 0;
    flex: 0 0 100%;
    order: 2;
    max-width: 100%;
  }

  #economic-mobility .image-content {
    flex: 0 0 100%;
    height: 350px;
    margin-top: -100px;
    margin-bottom: 0;
    order: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #economic-mobility .circle-container {
    position: relative;
    left: 0;
    transform: translateY(-10%);
    width: 320px;
    height: 320px;
    margin-top: 0;
    margin-bottom: 0;
  }

  #economic-mobility .text-content h1 {
    font-size: 40px;
    line-height: 52px;
  }

  #economic-mobility .text-content h2 {
    font-size: 18px;
  }

  #economic-mobility .text-content p {
    font-size: 18px;
  }
}

/* Very large screen styles for promise section */
@media screen and (min-width: 2000px) {
  #promise .container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 6rem 0 6rem 0;
  }

  #promise .promise-content {
    gap: 15rem;
    min-height: 80vh;
  }

  #promise .promise-left h1 {
    font-size: 64px;
    line-height: 80px;
  }

  #promise .promise-left p {
    font-size: 24px;
  }

  #promise .top-logos {
    max-width: 700px;
    gap: 4rem;
  }

  #promise .top-logos .logo-item:nth-child(1) img {
    width: 300px;
    height: auto;
  }

  #promise .top-logos .logo-item:nth-child(2) img {
    width: 250px;
    height: auto;
  }

  #promise .top-logos .logo-item:nth-child(3) img {
    width: 350px;
    height: auto;
  }
}

@media screen and (min-width: 3000px) {
  #promise .container {
    max-width: 2200px;
    padding: 8rem 0 8rem 0;
  }

  #promise .promise-content {
    gap: 20rem;
    min-height: 70vh;
  }

  #promise .promise-left h1 {
    font-size: 80px;
    line-height: 100px;
  }

  #promise .promise-left p {
    font-size: 28px;
  }

  #promise .top-logos {
    max-width: 900px;
    gap: 5rem;
  }

  #promise .top-logos .logo-item:nth-child(1) img {
    width: 400px;
    height: auto;
  }

  #promise .top-logos .logo-item:nth-child(2) img {
    width: 350px;
    height: auto;
  }

  #promise .top-logos .logo-item:nth-child(3) img {
    width: 450px;
    height: auto;
  }
}

/* Very large screen styles for economic mobility section */
@media screen and (min-width: 2000px) {
  #economic-mobility {
    padding: 0 8rem;
  }

  #economic-mobility .content {
    max-height: 600px;
  }

  #economic-mobility .text-content {
    padding: 6rem 0 6rem 0;
    max-width: 40%;
  }

  #economic-mobility .text-content h1 {
    font-size: 64px;
    line-height: 80px;
  }

  #economic-mobility .text-content h2 {
    font-size: 24px;
  }

  #economic-mobility .text-content p {
    font-size: 24px;
  }

  #economic-mobility .image-content {
    width: 800px;
    height: 120vh;
    margin-top: -300px;
    margin-bottom: -300px;
  }

  #economic-mobility .circle-container {
    width: 800px;
    height: 800px;
    margin-top: -300px;
    margin-bottom: -300px;
  }
}

@media screen and (min-width: 3000px) {
  #economic-mobility {
    padding: 0 10rem;
  }

  #economic-mobility .content {
    max-height: 700px;
  }

  #economic-mobility .text-content {
    padding: 8rem 0 8rem 0;
    max-width: 35%;
  }

  #economic-mobility .text-content h1 {
    font-size: 80px;
    line-height: 100px;
  }

  #economic-mobility .text-content h2 {
    font-size: 28px;
  }

  #economic-mobility .text-content p {
    font-size: 28px;
  }

  #economic-mobility .image-content {
    width: 1000px;
    height: 140vh;
    margin-top: -400px;
    margin-bottom: -400px;
  }

  #economic-mobility .circle-container {
    width: 1000px;
    height: 1000px;
    margin-top: -400px;
    margin-bottom: -400px;
  }
}

#home-eclipse-new {
  background: #9fdfff;
}

#home-eclipse-new .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 3rem;
  padding: 5rem 3rem;
  width: 90%;
  margin: auto;
}

#home-eclipse-new .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

#home-eclipse-new .content button {
  background: #003292;
  color: white;
  border-radius: 50px;
  border: 1px solid #003292;
  padding: 1rem 2rem;
  transition: 0.3s;
}
#home-eclipse-new .content button:hover {
  color: #003292;
  border: 1px solid #003292;
  background: white;
}
#home-eclipse-new .content h1 {
  font-size: 48px;
  font-weight: bold;
}

#home-eclipse-new .content p {
  width: 70%;
}

#home-eclipse-new .image {
  display: flex;
  justify-content: center;
  align-items: center;
}

#home-eclipse-new .image img {
  object-fit: cover;
  max-height: 230px;
  max-width: 200px;
}

@media screen and (max-width: 1100px) {
  #home-eclipse-new .container {
    flex-direction: column;
    gap: 1rem;
    padding: 4rem 1rem;
  }

  #home-eclipse-new .content {
    align-items: center;
    width: auto;
  }

  #home-eclipse-new .content p {
    text-align: center;
  }

  #home-eclipse-new .content p {
    width: 90%;
  }

  #home-eclipse-new .image img {
    height: 150px;
    width: 150px;
  }

  #home-eclipse-new .content h1 {
    font-size: 32px;
  }

  #home-eclipse-new .content p {
    font-size: 14px;
  }
}

/* <section id="the-center-hero"> */
#the-center-hero {
  background: #ceeeff;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

#the-center-hero .container {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: row;
  gap: 3rem;
}

#the-center-hero .hero-imgs-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #a4daf7;
  padding: 4rem;
  border-bottom-right-radius: 1000px;
  border-top-right-radius: 1000px;
}

#the-center-hero .hero-imgs-wrapper .logo-img {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  border-radius: 50%;
  background-color: #fff;
  aspect-ratio: 1/1;
  min-height: 261px;
}

#the-center-hero .container .bg-ring {
  position: absolute;
  top: 0;
  right: 0;
}

#the-center-hero .container .content {
  max-width: 30%;
}

/* <section id="challenge"> */
#center-challenge {
  background: #003292;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4rem 0;
  overflow: hidden;
}

#center-challenge .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: row;
  gap: 3rem;
  color: #fff;
}

#center-challenge .challenge-left h1 {
  font-size: 48px;
  font-weight: bold;
}

#center-challenge .challenge-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  width: 50%;
  padding-left: 6rem;
}

#center-challenge .challenge-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#center-challenge .challenge-right img {
  object-fit: cover;
  max-height: 530px;
}

#center-challenge .curve-edge {
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 796px) {
  #the-center-hero {
    height: auto;
  }

  #the-center-hero .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  #the-center-hero .container .content {
    width: auto;
    max-width: 100%;
    align-items: center;
    text-align: center;
    padding: 2rem;
    z-index: 1;
  }

  #the-center-hero .hero-imgs-wrapper {
    width: 90%;
    max-width: 100%;
    overflow: hidden;
    padding: 1rem;
    z-index: 1;
    justify-content: flex-end;
  }

  #the-center-hero .hero-imgs-wrapper .logo-img {
    height: auto;
    width: 45%;
    min-height: auto;
  }

  #the-center-hero .hero-imgs-wrapper .logo-img img {
    width: 100%;
    height: auto;
  }

  #the-center-hero .container .bg-ring {
    opacity: 0.2;
    z-index: 0;
  }

  #center-challenge {
    min-height: auto;
  }

  #center-challenge .container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
  }

  #center-challenge .challenge-left {
    width: auto;
    max-width: 100%;
    align-items: center;
    padding: 2rem;
    z-index: 1;
  }

  #center-challenge .challenge-left h1 {
    font-size: 32px;
  }

  #center-challenge .challenge-left p {
    font-size: 16px;
  }

  #center-challenge .challenge-right {
    width: auto;
    z-index: 1;
  }

  #center-challenge .challenge-right img {
    max-height: 400px;
  }

  #center-challenge .curve-edge {
    z-index: 0;
  }

  #approach-carousel {
    padding: 0;
    margin-bottom: 2rem;
  }

  #approach-carousel .slide-content h3 {
    font-size: 2rem;
  }

  #approach-carousel .slide-content p {
    font-size: 16px;
    width: 100%;
  }

  #approach-carousel .slide-inner {
    gap: 1rem;
    grid-auto-rows: 1fr;
    justify-items: center;
  }

  #approach-carousel .slide-image-overlay {
    padding: 2rem;
  }

  #approach-carousel .slide-image-overlay p {
    font-size: 2rem;
  }

  #approach-carousel .swiper-pagination-bullets.swiper-pagination-horizontal {
    top: -3rem;
  }
}

/* container */
.approach-carousel {
  padding: 80px 0;
  position: relative;
  background-color: #fff;
}

.approach-carousel .content-container {
  height: max-content;
  border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  padding: 2rem 2rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
}

/* slide layout: left content, right image as two cards */
.slide-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  height: 100%;
}

/* look like separate cards */
.swiper-slide {
  border-radius: 16px;
  padding: 40px;
  color: #fff;
  height: unset !important;
}

.swiper-wrapper {
  align-items: stretch;
}

.slide-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem;
  height: 100%;
  padding: 3rem 3rem 3rem 0;
  border-radius: 12px;
  color: #000;
}

.slide-content h3 {
  font-size: 3rem;
}

.slide-content p {
  font-size: 16px;
  width: 70%;
}

.slide-content .subheading {
  font-size: 16px;
  text-transform: uppercase;
}

.slide-content .btn {
  background: #003292;
  color: #fff;
  border-radius: 50px;
  border: 1px solid #003292;
  padding: 1rem 2rem;
  transition: 0.3s;
}

.slide-image {
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 70vh;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .slide-image {
    max-height: none;
  }
}

.slide-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 70%,
    rgba(0, 0, 0, 0.8)
  );
  display: flex;
  align-items: end;
  justify-content: start;
  padding: 3rem;
}

.slide-image-overlay p {
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
}

/* image card */
.slide-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* Navigation with subheadings */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
}

.nav-button-with-text {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-prev {
  flex-direction: row-reverse;
}

.nav-next {
  flex-direction: row;
}

.nav-subtitle {
  display: flex;
  flex-direction: column;
  text-align: right;
  font-size: 14px;
  line-height: 1.3;
  color: #666;
}

.nav-prev .nav-subtitle {
  text-align: right;
}

.nav-next .nav-subtitle {
  text-align: left;
}

.nav-subtitle-text {
  font-weight: 600;
  color: #003292;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.nav-subtitle-value {
  font-size: 14px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

/* Navigation buttons */
.nav-buttons {
  display: flex;
  gap: 15px;
}

.swiper-button-prev,
.swiper-button-next {
  position: relative !important;
  width: 50px;
  height: 50px;
  background: #003292;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
  top: unset !important;
  left: unset !important;
  right: unset !important;
  bottom: unset !important;
  margin-top: 0 !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #002266;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.nav-arrow {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.prev-arrow {
  transform: rotate(180deg);
}

/* pagination + nav row */
.approach-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
}

/* dots center */
.swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* blue dots */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #007bff;
  opacity: 0.4;
  margin: 0 6px;
}
.swiper-pagination-bullet-active {
  opacity: 1;
}

/* nav buttons to the right of pagination, spaced apart */
.nav-buttons {
  margin-left: 24px;
  display: flex;
  gap: 16px;
  align-items: center;
}

/* keep nav static (not overlay) */
.swiper-button-prev,
.swiper-button-next {
  width: 44px !important;
  height: 44px !important;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #003292;
  color: #fff;
  font-size: 18px;
  aspect-ratio: 1/1;
}

/* mobile: stack */
@media (max-width: 768px) {
  .slide-inner {
    grid-template-columns: 1fr;
  }

  .swiper-slide {
    padding: 1rem;
  }

  .approach-controls {
    flex-direction: column;
    gap: 12px;
    padding: 0 1rem;
  }

  .nav-container {
    gap: 0;
  }

  .approach-controls .nav-subtitle-value {
    font-size: 12px;
  }
}

.nav-button-with-text {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-prev {
  justify-content: flex-start;
}
.nav-next {
  justify-content: flex-end;
}

.nav-subtitle-value {
  font-weight: 600;
  transition: opacity 0.14s ease;
}

/* Dallas County Promise */
#dcp-hero {
  width: 100%;
  min-height: 80vh;
  padding-top: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#dcp-hero .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 2rem;
  width: 100%;
  height: 100%;
}

#dcp-hero .hero-image {
  width: 40%;
  margin-bottom: 2rem;
}

#dcp-hero .content h1 {
  font-size: 1.5rem;
  font-weight: 600;
}

#dcp-hero .video {
  width: 100%;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}

#dcp-hero .video-wrapper {
  width: 100%;
  height: 500px;
  position: relative;
}

#dcp-hero .video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#dcp-hero .video-wrapper .video-controls {
  right: 10px;
  z-index: 2;
  pointer-events: auto;
}

#dcp-hero .video-wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
}

#dcp-hero .blue-ring {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

#dcp-hero .red-ring {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 796px) {
  #dcp-hero {
    padding-top: 60px;
    width: 100vw;
    overflow-x: hidden;
    min-height: unset;
    height: auto;
  }

  #dcp-hero .container {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
    padding-top: 4rem;
  }

  #dcp-hero .red-ring {
    display: none;
  }

  #dcp-hero .video {
    width: 100%;
    border: 1px solid #dcdcdc;
    height: max-content;
    border-radius: 0 !important;
  }

  #dcp-hero .video-wrapper {
    width: 100%;
    height: auto;
    min-height: unset;
  }

  #dcp-hero .video-wrapper .video-controls {
    right: 10px;
    bottom: 10%;
    z-index: 2;
  }
}

/* DCP-OF_EMC */
#dcp-of-emc {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 4rem;
}

#dcp-of-emc .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

#dcp-of-emc .pillars-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  padding: 0 6rem;
}

#dcp-of-emc .pillar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  padding: 1rem;
}

#dcp-of-emc .pillar:nth-child(odd) {
  background-color: #c2ebff;
}

#dcp-of-emc .pillar:nth-child(even) {
  background-color: #f2f2f2;
}

#dcp-of-emc .pillar .image {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
}

#dcp-of-emc .pillar .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#dcp-of-emc .pillar p {
  font-size: 1rem;
}

@media screen and (max-width: 796px) {
  #dcp-of-emc {
    padding: 2rem;
  }

  #dcp-of-emc .pillars-row {
    grid-template-columns: repeat(1, minmax(250px, 1fr));
    padding: 0;
  }

  #dcp-of-emc .pillar {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    padding: 1rem;
  }

  #dcp-of-emc .container {
    text-align: center;
  }
}

/* DCP-Goals */
#dcp-goals {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 4rem;
}

#dcp-goals .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 2rem;
  width: 90%;
  padding: 1rem 6rem;
  border: 2px solid #ec2827;
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  margin-left: auto;
}

#dcp-goals .container .content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

#dcp-goals .container .content h1 {
  font-size: 48px;
}

#dcp-goals .container .content h4 {
  font-size: 18px;
}

#dcp-goals .container .content p {
  font-size: 18px;
}

#dcp-goals .container .image {
  width: 50%;
  padding: 1rem;
  border-radius: 50%;
  border: 1px solid #003292;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

#dcp-goals .container .image img {
  width: 100%;
  object-fit: cover;
}

@media screen and (max-width: 796px) {
  #dcp-goals {
    padding: 2rem;
  }

  #dcp-goals .container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 2rem;
    border-radius: 1rem;
  }

  #dcp-goals .container .image {
    width: 100%;
    padding: 1rem;
    border-radius: 50%;
    border: 1px solid #003292;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #dcp-goals .container .content {
    text-align: center;
    align-items: center;
  }
}

/* Vision-2030 */
#vision-2030 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 4rem;
}

#vision-2030 .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 2rem;
  width: 100%;
  padding: 1rem 6rem;
}

#vision-2030 .container .content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

#vision-2030 .container .content h1 {
  font-size: 48px;
}

#vision-2030 .container .list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  width: 70%;
  list-style-type: disc;
}

#vision-2030 .container .list li {
  font-size: 18px;
}

#vision-2030 .container .image {
  width: 50%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

#vision-2030 .container .image img {
  width: 100%;
  object-fit: cover;
}

#vision-2030 .ring {
  position: absolute;
  bottom: -50%;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 796px) {
  #vision-2030 {
    padding: 2rem;
    margin-top: 1rem;
  }

  #vision-2030 .container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
    border-radius: 1rem;
    gap: 0;
  }

  #vision-2030 .container .list {
    width: 100%;
    padding: 1rem;
    border-radius: 1rem;
  }

  #vision-2030 .container .image {
    width: 100%;
    padding: 1rem;
    border-radius: 50%;
    border: none;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #vision-2030 .container .content {
    text-align: center;
    align-items: center;
  }
}

/* section #impact */

#impact {
  background: #f2f2f2;
  padding: 3rem;
}

#impact .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: flex-start;
  align-items: center;
}

#impact .container .header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

#impact .container .header .title {
  color: #000;
  font-family: "Open Sans";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 62px; /* 129.167% */
}

#impact .container .header .subtitle {
  color: #333;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 138.889% */
  letter-spacing: -0.342px;
}

#impact .container .header .description {
  color: #333;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px; /* 138.889% */
  letter-spacing: -0.342px;
}

#impact .container .content {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: space-between;
  align-items: stretch;
  max-height: min-content;
  width: 100%;
}

#impact .container .content .image {
  width: 50%;
  border-radius: 20px;
  overflow: hidden;
  max-height: 500px;
  height: auto;
}

#impact .container .content .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#impact .container .content .metrics {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 50%;
  border-radius: 20px;
  background: #fff;
  padding: 2rem;
  justify-content: center;
  position: relative;
}

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

#impact .container .content .metrics .metrics-title {
  color: #000;
  font-family: "Open Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 125% */
  letter-spacing: -0.38px;
  z-index: 1;
}

#impact .container .content .metrics .metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  z-index: 1;
}

#impact .container .content .metrics .metrics-grid .metric {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#impact .container .content .metrics .metrics-grid .metric .year {
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 178.571% */
  letter-spacing: -0.266px;
}

#impact .container .content .metrics .metrics-grid .metric .title {
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px; /* 156.25% */
  letter-spacing: -0.304px;
}

#impact .container .content .metrics .metrics-grid .metric .number {
  font-family: "Open Sans";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 62px; /* 129.167% */
}

#impact .container .content .metrics .metrics-grid .metric .subtitle {
  font-family: "Open Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px; /* 208.333% */
  letter-spacing: -0.228px;
}

#impact .container .content .metrics .metrics-grid .first-col .metric {
  color: #003292;
}

#impact .container .content .metrics .metrics-grid .second-col .metric {
  color: #4da72e;
}

#impact .container .second-col,
#impact .container .first-col {
  gap: 2rem;
  display: flex;
  flex-direction: column;
}

#impact .container .middle-col,
#impact .container .middle-col .metric {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

#impact .container .middle-col .arrow-up,
#impact .container .middle-col .arrow-down {
  padding: 0.8rem;
  width: 47px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #08c3f44d;
  border-radius: 50%;
}

#impact .container .middle-col .metric-number {
  color: #08c3f4;
  font-family: "Open Sans";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media (max-width: 768px) {
  #impact {
    padding: 1rem;
  }

  #impact .container {
    text-align: center;
    align-items: center;
  }

  #impact .container .header {
    text-align: center;
    align-items: center;
  }

  #impact .container .content {
    flex-direction: column;
  }

  #impact .container .content .image,
  #impact .container .content .metrics {
    width: 100%;
  }

  #impact .container .content .metrics {
    padding: 1rem;
  }

  #impact .container .metrics-grid {
    grid-template-columns: 1fr !important;
  }

  #impact .container .metrics-grid .middle-col {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
  }
}

/* How Do We Work */
#how-do-we-work {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 4rem;
  background-color: #ed4b4a1a;
}

#how-do-we-work .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 2rem;
  width: 100%;
  padding: 3rem 0 3rem 6rem;
}

#how-do-we-work .container .content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  width: 50%;
}

#how-do-we-work .container .content h1 {
  font-size: 3rem;
}

#how-do-we-work .container .content p {
  font-size: 1rem;
  font-weight: bold;
}

#how-do-we-work .container .image {
  width: 50%;
  aspect-ratio: 1.2/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  overflow: hidden;
}

#how-do-we-work .container .image img {
  width: 100%;
  object-fit: cover;
}

#how-do-we-work .circle {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  transform: translate(-50%, -50%);
  background-color: #ffd2d2;
  height: 90%;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

@media screen and (max-width: 796px) {
  #how-do-we-work {
    padding: 2rem;
    margin-top: 1rem;
  }

  #how-do-we-work .container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
    border-radius: 1rem;
    gap: 0;
  }

  #how-do-we-work .container .content {
    width: 100%;
    padding: 1rem;
    border-radius: 1rem;
    text-align: center;
    align-items: center;
  }

  #how-do-we-work .container .image {
    width: 100%;
    border-radius: 50%;
    border: none;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #how-do-we-work .container .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* DCP-Branches */
#branches {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4rem 0;
}

#branches .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

#branches .branches-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  align-items: center;
  justify-content: center;
  width: 100%;
}

#branches .branch {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  height: 100%;
  padding: 3rem;
}

#branches .branch .image {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
}

#branches .branch .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#branches .branch h4 {
  font-size: 2rem;
  font-weight: bold;
}

#branches .branch p {
  font-size: 1rem;
}

@media screen and (max-width: 796px) {
  #branches {
    margin: 1rem 0;
  }

  #branches .container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
    border-radius: 1rem;
    gap: 0;
  }

  #branches .branches-grid {
    grid-template-columns: repeat(1, minmax(250px, 1fr));
    padding: 0;
    text-align: center;
  }

  #branches .branch {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    padding: 2rem !important;
    align-items: center !important;
    text-align: center !important;
    justify-content: center !important;
  }

  #branches .branch .image {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
  }

  #branches .branch .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Privacy Policy Page */
#privacy-policy {
  padding: 8rem 0 4rem;
  background: #fff;
}

#privacy-policy .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

#privacy-policy .privacy-content {
  max-width: 900px;
  margin: 0 auto;
}

#privacy-policy .page-title {
  font-size: 3rem;
  font-weight: 700;
  color: #0a2463;
  margin-bottom: 2rem;
  text-align: center;
}

#privacy-policy .entry-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #333;
}

#privacy-policy .entry-content h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #0a2463;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

#privacy-policy .entry-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0a2463;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

#privacy-policy .entry-content p {
  margin-bottom: 1.25rem;
  font-size: 1.125rem !important;
}

#privacy-policy .entry-content ul,
#privacy-policy .entry-content ol {
  margin-bottom: 1.25rem;
  padding-left: 2rem;
}

#privacy-policy .entry-content li {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  line-height: 1.8;
}

#privacy-policy .entry-content a {
  color: #fb3640;
  text-decoration: underline;
}

#privacy-policy .entry-content a:hover {
  color: #0a2463;
}

#privacy-policy .entry-content strong {
  font-weight: 600;
  color: #0a2463;
}

@media screen and (max-width: 768px) {
  #privacy-policy {
    padding: 6rem 0 3rem;
  }

  #privacy-policy .page-title {
    font-size: 2rem;
  }

  #privacy-policy .entry-content h2 {
    font-size: 1.5rem;
  }

  #privacy-policy .entry-content h3 {
    font-size: 1.25rem;
  }

  #privacy-policy .entry-content p,
  #privacy-policy .entry-content li {
    font-size: 1rem !important;
  }
}
