.download-page-section {
  background-color: #ffffff;
  padding: 60px 20px;
  min-height: 60vh;
  font-family: "Poppins", sans-serif;
  color: #333333;
}
.download-container {
  max-width: 1300px;
  margin: 0 auto;
}
.download-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}
/* Table Styles */
.app-details-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}
.app-details-table tr:nth-child(odd) {
  background-color: #f2f2f2;
}
.app-details-table tr:nth-child(even) {
  background-color: #ffffff;
}
.app-details-table td {
  padding: 16px 20px;
  font-size: 15px;
  color: #111111;
  border: none;
}
.app-details-table td:first-child {
  width: 40%;
  font-weight: 700;
  text-align: left;
}
.app-details-table td:last-child {
  text-align: left;
  font-weight: 400;
}

/* Download CTA */
.download-cta-wrapper {
  text-align: center;
  margin-bottom: 50px;
}
.download-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(to right, #328bef, #1e204c);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  padding: 16px 50px;
  border-radius: 8px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(50, 139, 239, 0.3);
}
.download-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(50, 139, 239, 0.4);
}
.download-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Process List */
.process-heading {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  color: #328bef;
  margin-bottom: 30px;
}
.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 700px;
  margin: 0 auto;
}
.process-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
  color: #111111;
}
.process-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  background-color: #111111;
  color: #ffffff;
  border-radius: 6px;
  font-size: 14px;
  margin-right: 15px;
  flex-shrink: 0;
}

.summary-box {
  border: 1px solid #328bef;
  border-radius: 16px;
  padding: 30px 40px;
  text-align: center;
  margin-top: 40px;
}
.summary-icon {
  width: 32px;
  height: 32px;
  fill: #328bef;
  margin-bottom: 15px;
}
.summary-box h3 {
  font-size: 22px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 10px;
}
.summary-box p {
  font-size: 15px;
  color: #333333;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .app-details-table td {
    font-size: 14px;
    padding: 12px;
  }
  .download-cta-btn {
    width: 100%;
    padding: 15px 20px;
  }
  .summary-box {
    padding: 20px 15px;
  }
}

.steps-box {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 16px;
  margin: 50px 0;
}
.step-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}
.step-number {
  width: 40px;
  height: 40px;
  background: #328bef;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.warning-note {
  background: #fff3cd;
  border-left: 5px solid #ffc107;
  padding: 20px;
  border-radius: 8px;
  margin: 40px 0;
}
.summary-box {
  border: 2px solid #328bef;
  border-radius: 16px;
  padding: 35px;
  text-align: center;
  background: #f8fbff;
}
