.financial-section {
  background: #f3f5f8;
  padding: 60px 0;
  overflow: hidden;
}

.financial-section .financial-content {
  padding-right: 30px;
}

.financial-section .financial-content h2 {
  margin: 0 0 28px;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  color: #252525;
}

.financial-section .financial-content h2 span {
  font-style: italic;
  font-weight: 700;
}

.financial-section .financial-cards {
  display: flex;
  gap: 15px;
}

.financial-section .financial-card {
  flex: 1;
  min-height: 120px;
  padding: 17px 14px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
}

.financial-section .financial-card .card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.financial-section .financial-card .card-title svg {
  color: #2864df;
  font-size: 20px;
}

.financial-section .financial-card .card-title h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #252525;
}

.financial-section .financial-card p {
  margin: 0;
  color: #252525;
  font-size: 18px;
  line-height: 1.3;
}

.financial-section .financial-image-col {
  display: flex;
  justify-content: end;
}

.financial-section .financial-image-wrapper {
  position: relative;
  width: 450px;
  height: 470px;
}

.financial-section .financial-image-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
  height: 465px;
  border-radius: 24px;
  background: linear-gradient(180deg, #08c500 0%, #00b72b 48%, #1877d1 100%);
}

.financial-section .financial-image {
  position: absolute;
  top: 18px;
  left: 5px;
  width: 355px;
  height: 435px;
  overflow: hidden;
  border: 4px solid #ffffff;
  border-radius: 25px;
  z-index: 2;
}

.financial-section .financial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.financial-section .growth-arrow {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 75px;
  font-weight: 300;
  line-height: 1;
  z-index: 3;
}

@media (max-width: 991px) {
  .financial-section {
    padding: 50px 0;
  }

  .financial-section .financial-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .financial-section .financial-content h2 {
    text-align: center;
    font-size: 32px;
  }

  .financial-section .financial-cards {
    max-width: 700px;
    margin: auto;
  }

  .financial-section .financial-image-wrapper {
    margin: auto;
  }
}

@media (max-width: 575px) {
  .financial-section {
    padding: 40px 15px;
  }

  .financial-section .financial-content h2 {
    font-size: 27px;
    margin-bottom: 22px;
  }

  .financial-section .financial-cards {
    flex-direction: column;
    gap: 15px;
  }

  .financial-section .financial-card {
    width: 100%;
  }

  .financial-section .financial-image-wrapper {
    width: 100%;
    max-width: 380px;
    height: 400px;
    margin-top: 20px;
  }

  .financial-section .financial-image-bg {
    width: 80%;
    height: 390px;
  }

  .financial-section .financial-image {
    width: 82%;
    height: 360px;
  }

  .financial-section .growth-arrow {
    font-size: 60px;
  }
}
