* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Source Sans 3";
}

body {
  background: #fff;
  color: #222;
}

.mutual-header {
  padding: 10px 80px 10px;
}

.mutual-header h1 {
  margin-top: 32px;
  font-size: 42px;
  font-weight: 700;
  color: #CD684A;
}

.breadcrumb {
  margin-top: 10px;
  font-size: 14px;
  color: #243A5E;
}

.breadcrumb span {
  color: #CD684A;
}

.breadcrumb a{
  color: #243A5E;
  text-decoration:none;
}

#brand-underline{
  display: block;
  margin-top: 4px;
  width: 250px;
  height: 2px;
  background:#243A5E; 
}

/* hero */
.mutual-hero {
  padding: 0 80px;
}

.mutual-hero img {
  width: 100%;
  border-radius: 14px;
  margin-top: 15px;
  object-fit: cover;
}

/* Why mutual funds */
.why-mutual-funds {
  background: #fff;
  padding: 90px 80px;
  color: #222222;
}


.why-funds-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.label {
  font-size: 15px;
  letter-spacing: 1.5px;
  border-bottom: 2px solid white;
  display: inline-block;
  padding-bottom: 4px;
  color: #CD684A;
}

.label-underline{
  display: block;
  margin-top: 5px;
  width: 250px;
  height: 2px;
  background: #243A5E;
  margin-bottom: 12px; 
}

.why-funds-left h2 {
  font-size: 36px;
  line-height: 1.3;
}

.underline-text {
  position: relative;
}

.why-description {
  margin: 24px 0;
  line-height: 1.7;
  color: #4A5565;
}

.working-image {
  justify-self: end;      
  align-self: center;
}


.working-image img {
  width: 100%;
  max-width: 700px;   
  border-radius: 16px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .mutual-header,
  .mutual-hero,
  .why-mutual-funds {
    padding-left: 24px;
    padding-right: 24px;
  }

  .mutual-header h1 {
    font-size: 28px;
  }

  /* Hero image */
  .mutual-hero img {
    border-radius: 12px;
  }

  .why-funds-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-funds-left h2 {
    font-size: 28px;
  }

  .working-image {
    justify-self: center;
  }

  .working-image img {
    max-width: 100%;
  }
}
@media (max-width: 1024px) {

  .mutual-header,
  .mutual-hero,
  .why-mutual-funds {
    padding-left: 48px;
    padding-right: 48px;
  }

  .why-funds-container {
    gap: 60px;
  }

  .working-image img {
    max-width: 520px;
  }
}

.mf-features {
  padding: 80px;
  background-color: #243A5E;
}

.mf-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  height: 270px;
}

.mf-feature-card {
  background: #f7f9fc;
  padding: 28px;
  border-radius: 16px;
}

.mf-feature-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #222;
}

.mf-feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #4A5565;
}

.fund-categories {
  padding: 90px 80px;
  text-align: center;
}

.section-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #CD684A;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-label.underline {
  border-bottom: 2px solid #243A5E;
  padding-bottom: 4px;
  width: 200px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #222;
}

.section-desc {
  font-size: 15px;
  color: #4A5565;
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

/* Cards grid */
.fund-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card */
.fund-card {
  background: #f2f4f8;
  padding: 36px 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.fund-icon {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 14px;
  
}

.fund-icon img {
  width: 52px;
  height: 54px;
  object-fit: contain;
}

.fund-card h3 {
  font-size: 32px;
  font-weight: 600;
  color: #222;
}

.fund-card.center {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .fund-categories {
    padding: 60px 24px;
  }

  .section-title {
    font-size: 26px;
  }

  .fund-grid {
    grid-template-columns: 1fr;
  }

  .fund-card.center {
    grid-column: 1 / 2;   
    max-width: 100%;
  }

}

.investment-methods {
  padding: 20px 80px;
  text-align: center;
}

.section-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #CD684A;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
  align-items: center;
}

.section-label.underline {
  border-bottom: 2px solid #243A5E;
  padding-bottom: 4px;
  width: 100px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.section-desc {
  font-size: 15px;
  color: #4A5565;
  max-width: 520px;
  margin-bottom: 60px;
  line-height: 1.6;
  text-align: center;
  margin: 0 auto 60px;
}

.investment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px 60px;
  align-items: center;
}

.investment-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.investment-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.investment-content{
  text-align: center;
  background: #ffffff;
  border: 0.1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}

.investment-content p {
  font-size: 15px;
  color: #4A5565;
  line-height: 1.7;
}

.investment-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.investment-points li {
  display: flex;
  align-items: flex-start;     
  gap: 10px;
  margin-bottom: 8px;
}

.bullet {
  width: 6px;
  height: 6px;
  background: #CD684A;
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
}

.text {
  font-size: 15px;
  color: #4A5565;
  line-height: 1.6;
}

/* our role */
.our-role-section {
  padding: 40px 80px;
  text-align: center;
  background: #fff;
}

.our-role-label {
  font-size: 14px;
  letter-spacing: 1.5px;
  color: #CD684A;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}

.our-role-label.underline {
  border-bottom: 2px solid #243A5E;
  padding-bottom: 4px;
}

.our-role-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.our-role-desc {
  font-size: 15px;
  color: #4A5565;
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* GRID */
.our-role-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr;
  gap: 30px;
  align-items: start;
}

/* LEFT */
.our-role-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.role-image{
  position: relative;
  display: inline-block;
}

.role-image img {
  width: 100%;
  max-width: 750px;
  height: 720px;
  border-radius: 16px;
  object-fit: cover;
}

.experience-card {
  position: absolute;
  bottom: -25px;
  right: -40px;
  background: #CD684A;
  color: #fff;
  padding: 30px 40px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

.experience-number {
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}

.experience-text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
}

/* RIGHT */
.our-role-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.role-feature-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #243A5E;
  padding: 20px;
  border-radius: 16px;
  color: #fff;
  height: 140px;
}

.feature-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.feature-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-content p {
  font-size: 14px;
  line-height: 1.6;
}

.role-feature-card.center{
  grid-column: span 2;
  max-width: 360px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .our-role-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .our-role-cards {
    gap: 20px;
  }
}

.consultation {
  padding: 10px 60px;
  background: #fff;
}

.consultation-container {
  max-width: 1360px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: stretch;
}

.consultation-image img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  border-radius: 18px;
}

/* left card */
.consultation-card {
  background: #f1f3f5;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 56px;
  min-height: 580px;
}

.consultation-text {
  text-align: center;
  max-width: 520px;
}

/* next step*/
.section-labels {
  font-size: 14px;
  letter-spacing: 1.5px;
  color: #243A5E;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.section-labels::after {
  content: "";
  display: block;
  width: 88px;
  height: 2px;
  background: #243A5E;
  margin: 8px auto 0;
}

.consultation-text h2 {
  font-size: 32px;
  line-height: 1.35;
  margin-bottom: 18px;
  color: #222;
}

/* content*/
.consultation-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 28px;
}

.consultation-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.btn-primary {
  background: #243A5E;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.btn-outline {
  border: 1px solid #243A5E;
  background: #fff;
  color: #243A5E;
  padding: 12px 22px;
  border-radius: 8px;
  cursor: pointer;
}


@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
}

@media (max-width: 768px) {
  .mutual-header,
  .mutual-hero,
  .why-mutual-funds,
  .mf-features,
  .fund-categories,
  .investment-methods,
  .our-role-section,
  .consultation {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

/* HERO */
@media (max-width: 768px) {
  .mutual-hero img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }
}

/* WHY MUTUAL FUNDS */
@media (max-width: 768px) {
  .why-funds-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .working-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
}

/* BLUE CARDS ISSUE */
@media (max-width: 768px) {
  .mf-features {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .mf-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    height: auto;
  }

  .mf-feature-card {
    padding: 22px;
  }
}

/* FUND CATEGORIES */
@media (max-width: 768px) {
  .fund-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .fund-card.center {
    grid-column: auto;
    max-width: 100%;
  }
}

/* INVESTMENT METHODS */
@media (max-width: 768px) {
  .investment-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .investment-image img {
    height: auto;
  }

  .investment-content {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .our-role-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .role-image img {
    height: auto;
    width: 100%;
    max-width: 100%;
  }

  .experience-card {
    position: static;
    margin-top: 16px;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .role-feature-card {
    height: auto;
  }
}

/* CONSULTATION SECTION */
@media (max-width: 768px) {
  .consultation-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .consultation-image img {
    height: auto;
  }

  .consultation-card {
    min-height: auto;
    padding: 32px 24px;
  }

  .consultation-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
  }
}

/* TABLET */
@media (max-width: 1024px) {
  .mf-features-grid {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }

  .our-role-grid {
    grid-template-columns: 1fr;
  }

  .consultation-container {
    grid-template-columns: 1fr;
  }
}
