

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #e6f0ed;
}

.fund-management-section {
  padding: 40px 0;
  margin-bottom: 4em;
  background: #FFFFFF;
}

.fm-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 48px;
  flex-wrap: wrap;
}

.fm-image-box {
  position: relative;
  min-width: 320px;
  max-width: 420px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.fm-person-img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border: 1px solid #2bb686;
}

.fm-chart-img {
  position: absolute;
  right: -8%;
  bottom: 0;
  transform: translateY(30%);
  width: 90%;
  max-width: 350px;
  border-radius: 32px;
  padding: 12px;
  transition: transform 0.35s cubic-bezier(0.4, 0.2, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.fm-chart-img:hover {
  transform: translateY(20%) scale(1.06);
  box-shadow: 0 16px 48px rgba(43,182,134,0.25);
}
.fm-content {
  max-width: 500px;
  background: none;
}
.fm-about {
  color: #2bb686;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-size: 1rem;
}
.fm-title {
  font-size: 2.2rem;
  font-weight: 400;
  margin: 0 0 18px 0;
  color: #2bb686;
  line-height: 1.1;
}
.fm-desc {
  color: #5a6d6a;
  font-size: 1.1rem;
  margin-bottom: 28px;
  line-height: 1.6;
}
.fm-specialization {
  background: #eaf7f3;
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 28px;
  box-shadow: 0 2px 8px rgba(43,182,134,0.04);
}
.fm-spec-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.fm-spec-desc {
  color: #7a8c8a;
  font-size: 1rem;
  margin-bottom: 12px;
}
.fm-spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fm-spec-list li {
  color: #1a2e2b;
  font-size: 1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
.fm-icon {
  color: #2bb686;
  margin-right: 8px;
  font-size: 1.1em;
}
.fm-icon-img {
  width: 2.4em;
  height: 2.4em;
  margin-right: 8px;
  vertical-align: middle;
  transition: transform 0.4s cubic-bezier(0.4, 0.2, 0.2, 1);
}
.fm-icon-img:hover {
  transform: rotate(360deg) scale(1.18);
}
.fm-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 32px;
  border: 2px solid #2bb686;
  border-radius: 32px;
  color: #2bb686;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  background: #e6f0ed;
}
.fm-btn:hover {
  background: #2bb686;
  color: #fff;
}


@media (max-width: 900px) {
  .fm-container {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
    padding: 24px;
  }
  .fm-image-box {
    max-width: 100%;
    min-width: 0;
  }
  .fm-content {
    max-width: 100%;
  }
  .fm-chart-img {
    /*right: 0;*/
    /*left: 50%;*/
    /*transform: translate(-50%, 30%);*/
    display: none;
  }
}


@media (max-width: 600px) {
  .fund-management-section {
    padding: 18px 0;
    margin-bottom: 1em;
  }
  .fm-title {
    font-size: 1.6rem;
  }
  .fm-image-box {
    min-width: 0;
    max-width: 100%;
  }
  .fm-person-img, .fm-chart-img {
    border-radius: 10px;
  }
  .fm-chart-img {
    /*width: 98%;*/
    /*max-width: 98vw;*/
    /*right: 0;*/
    /*left: 50%;*/
    /*transform: translate(-50%, 20%);*/
    /*padding: 6px;*/
    display: none;

  }
  .fm-specialization {
    padding: 14px 10px;
  }
  .fm-btn {
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }
} 