.account-compare-section {
  padding: 40px 0;
  background: linear-gradient(135deg, #f9fafc, #eef3f9);
}

.account-header {
  max-width: 750px;
  margin: 0 auto 50px;
  text-align: center;
}

.account-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
}

.account-header p {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.account-cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: linear-gradient(45deg, #1b65af, #38b1f6);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(27, 101, 175, 0.25);
}

.account-cta-btn:hover {
  background: linear-gradient(45deg, #154d85, #1b65af);
  transform: translateY(-2px);
}

/* Cards Grid */
.account-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Card Styles */
.account-card {
  background-image: url("../../assets/imgs/images/account-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 18px;
  backdrop-filter: blur(12px);
  border: 2px solid transparent;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.account-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* Gradient borders */
.stp-account-card {
  border-image: linear-gradient(45deg, #d4a017, #ffcf45) 1;
}

.ecn-account-card {
  border-image: linear-gradient(45deg, #1b65af, #38b1f6) 1;
}

/* Header */
.account-card-header {
  text-align: center;
  padding: 25px 15px 15px;
}

.account-card-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 10px 20px;
}


/* Icon Circle */
.account-icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.stp-icon-wrap {
  background: linear-gradient(135deg, #d4a017, #ffcf45);
}

.ecn-icon-wrap {
  background: linear-gradient(135deg, #1b65af, #38b1f6);
}

/* List */
.account-card ul {
  list-style: none;
  margin: 0;
}

.account-card ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 15px;
  color: #444;
}

.account-card ul li i {
  margin-right: 12px;
  font-size: 18px;
  color: #1b65af;
}


/* =============================================== orners option css start ==================== */

.ownership-section {
  padding: 50px 0px;
  background: #f9fafc;
  /* font-family: "Poppins", sans-serif; */
  text-align: center;
}

.ownership-container {
  max-width: 900px;
  margin: 0 auto;
}

.ownership-title {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 40px;
}

.ownership-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* Card Styling */
.ownership-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.ownership-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* Icon Circle */
.ownership-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1b65af, #38b1f6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.individual-card .ownership-icon {
  background: linear-gradient(135deg, #d4a017, #ffcf45);
}

.corporate-card .ownership-icon {
  background: linear-gradient(135deg, #1b65af, #38b1f6);
}

/* Card Text */
.ownership-card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.ownership-card-text {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .ownership-section {
    padding: 40px 15px;
  }

  .ownership-title {
    font-size: 26px;
    margin-bottom: 35px;
  }

  .ownership-card {
    padding: 20px 15px;
  }

  .ownership-icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }

  .ownership-card-title {
    font-size: 17px;
  }

  .ownership-card-text {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .ownership-section {
    padding: 35px 15px;
  }

  .ownership-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .ownership-cards {
    gap: 20px;
  }

  .ownership-card {
    padding: 18px 15px;
  }

  .ownership-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .ownership-card-title {
    font-size: 16px;
  }

  .ownership-card-text {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .ownership-section {
    padding: 30px 10px;
  }

  .ownership-title {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .ownership-cards {
    grid-template-columns: 1fr; /* stack cards vertically */
    gap: 15px;
  }

  .ownership-card {
    padding: 15px 12px;
  }

  .ownership-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .ownership-card-title {
    font-size: 15px;
  }

  .ownership-card-text {
    font-size: 12px;
  }
}

/* =============================================== orners option css end ==================== */