.card-section {
    display: flex;
    gap: 80px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 20px 20px;
}

.card {
    background-color: #eaf3fc;
    /* Light blue background */
    border-left: 6px solid #0073e6;
    /* Bold blue accent on the left */
    border-radius: 10px;
    padding: 25px 20px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.card h3 {
    font-size: 28px;
    color: #0a3d7c;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card ul {
    padding-left: 20px;
    margin: 0;
    font-size: 22px;
    color: #222;
}

.card ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.equity-section {
    text-align: center;
    margin: 20px;
}

.equity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.equity-item {
    padding: 20px;
    border-radius: 10px;
    background-color: #e6ebf1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.equity-item:hover {
    transform: translateY(-6px);
}

.equity-item i {
    font-size: 32px;
    color: #0d6efd;
    margin-bottom: 15px;
}

.equity-item h4 {
    margin-bottom: 10px;
    font-size: 32px;
    color: #1E3A8A;
}

.equity-item p {
    font-size: 20px;
    color: #555;
}

.how-to-invest {
    padding: 80px 20px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.how-to-invest h2 {
    font-size: 40px;
    margin-bottom: 60px;
    color: #111;
}

.step-list {
    display: grid;
    gap: 40px;
    justify-items: center;
}

.step-item {
    display: grid;
    grid-template-columns: 60px auto;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    width: 100%;
    text-align: left;
}

.step-number {
    background: #0073e6;
    color: white;
    font-weight: bold;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    line-height: 60px;
    text-align: center;
    font-size: 22px;
}

.step-content {
    font-size: 22px;
    line-height: 1.7;
    color: #222;
}

@media (max-width: 768px) {
    .step-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .step-number {
        margin: 0 auto 15px;
    }

    .step-content {
        text-align: center;
    }
}


footer {
    background: #004d99;
    color: white;
    text-align: center;
    padding: 20px;
}

.mf-warning-box {
    display: flex;
    align-items: center;
    justify-content: space-around;
    /* Vertically center icon and text */
    /* Full screen width */
    background-color: #fff3cd;
    color: #856404;
    border-left: 6px solid #ffc107;
    box-sizing: border-box;
    gap: 30px;
    border-radius: 10px;
}

.mf-warning-icon {
    font-size: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 30%;
}

.mf-warning-text {
    flex: 1;
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: left;
    max-width: 65%;

}

.card-section {
    display: flex;
    gap: 80px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 20px 20px;
}

.card {
    background-color: #eaf3fc;
    /* Light blue background */
    border-left: 6px solid #0073e6;
    /* Bold blue accent on the left */
    border-radius: 10px;
    padding: 25px 20px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.card h3 {
    font-size: 28px;
    color: #0a3d7c;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card ul {
    padding-left: 20px;
    margin: 0;
    font-size: 22px;
    color: #222;
}

.card ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.equity-section {
    text-align: center;
    margin: 20px;
}

.equity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.equity-item {
    padding: 20px;
    border-radius: 10px;
    background-color: #e6ebf1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.equity-item:hover {
    transform: translateY(-6px);
}

.equity-item i {
    font-size: 32px;
    color: #0d6efd;
    margin-bottom: 15px;
}

.equity-item h4 {
    margin-bottom: 10px;
    font-size: 32px;
    color: #1E3A8A;
}

.equity-item p {
    font-size: 20px;
    color: #555;
}

.how-to-invest {
    padding: 80px 20px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.how-to-invest h2 {
    font-size: 40px;
    margin-bottom: 60px;
    color: #111;
}

.step-list {
    display: grid;
    gap: 40px;
    justify-items: center;
}

.step-item {
    display: grid;
    grid-template-columns: 60px auto;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    width: 100%;
    text-align: left;
}

.step-number {
    background: #0073e6;
    color: white;
    font-weight: bold;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    line-height: 60px;
    text-align: center;
    font-size: 22px;
}

.step-content {
    font-size: 22px;
    line-height: 1.7;
    color: #222;
}
@media only screen and (max-width: 600px) {
  html, body {
    overflow-x: hidden;
    width: 99%;
  }

  .container-2 {
    padding: 0 1rem;
    box-sizing: border-box;
  }

  .card-section {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 10px;
  }

  .card {
    width: 100%;
    max-width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }

  .card h3 {
    font-size: 22px;
  }

  .card ul {
    font-size: 18px;
    padding-left: 16px;
  }

  .equity-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }

  .equity-item h4 {
    font-size: 24px;
  }

  .equity-item p {
    font-size: 16px;
  }

  .how-to-invest {
    padding: 40px 10px;
  }

  .step-list {
    gap: 20px;
  }

  .step-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .step-number {
    margin: 0 auto 10px;
  }

  .step-content {
    font-size: 18px;
  }

  .mf-warning-box {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    text-align: center;
  }

  .mf-warning-icon {
    font-size: 48px;
    max-width: 100%;
  }

  .mf-warning-text {
    max-width: 100%;
    font-size: 1rem;
    text-align: center;
  }

  .underlined-text {
    font-size: 24px;
    margin-left: 20px;
  }

  .container-2 p {
    font-size: 16px;
    margin-left: 20px;
  }
}


@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .card-section {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }

  .card {
    width: 100%;
    max-width: 90%;
  }

  .equity-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .equity-item h4 {
    font-size: 26px;
  }

  .equity-item p {
    font-size: 18px;
  }

  .step-list {
    gap: 30px;
  }

  .step-content {
    font-size: 20px;
  }

  .mf-warning-box {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 20px;
  }

  .mf-warning-icon {
    font-size: 52px;
  }

  .mf-warning-text {
    font-size: 1rem;
    max-width: 100%;
  }

  .container-2 p {
    font-size: 18px;
  }

  .underlined-text {
    font-size: 26px;
  }
}
