.container {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
}

.page-header {
  text-align: center;
  margin-bottom: 50px;
}

.page-title {
  color: #4a0d3a;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.page-subtitle {
  color: #777;
  font-size: 1.1rem;
}

/* --- CONTENT GRID --- */
.guidelines-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px; /* Increased gap for breathing room */
  margin-bottom: 60px;
  align-items: flex-start;
}

/* Left Column */
.guidelines-text {
  flex: 1;
  min-width: 300px;
}

.section-header {
  color: #6b1e5e;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 25px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Custom Checklist Style */
.requirements-list {
  list-style: none; /* Remove default numbers */
  padding: 0;
  margin-bottom: 40px;
}

.desc,
.requirements-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
}

/* Custom Checkmark Icon */
.requirements-list li::before {
  content: "\f00c"; /* FontAwesome check code */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #6b1e5e; /* Logo Purple */
  font-size: 1.1rem;
  background: #fcebf7;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* Modern Fee Card */
.fee-card {
  background-color: #fff;
  border: 2px solid #fcebf7;
  border-left: 6px solid #6b1e5e;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: transform 0.3s;
}

.fee-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(107, 30, 94, 0.1);
}

.fee-icon {
  font-size: 2rem;
  color: #6b1e5e;
  background: #fcebf7;
  padding: 10px;
  border-radius: 8px;
}

.fee-content strong {
  display: block;
  color: #4a0d3a;
  font-size: 1.05rem;
  margin-bottom: 5px;
}

.fee-content span {
  color: #666;
  font-size: 0.95rem;
}

/* Right Column */
.guidelines-visuals {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Image Styling */
.img-responsive {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Soft shadow */
  transition: transform 0.3s;
}

.img-responsive:hover {
  transform: scale(1.02); /* Slight zoom on hover */
  box-shadow: 0 8px 20px rgba(218, 108, 216, 0.1);
}

/* Action Button */
.btn-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #6b1e5e;
  color: white;
  padding: 18px 35px;
  text-decoration: none;
  border-radius: 50px; /* Pill shape */
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(107, 30, 94, 0.3);
  width: auto;
  margin: 20px;
}

.btn-register:hover {
  background-color: #8c246b;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(107, 30, 94, 0.4);
}
/* Bottom Section */
.bottom-section {
  margin-top: 80px;
  text-align: center;
  background: #faf7f9; /* Subtle background area */
  padding: 50px 20px;
  border-radius: 20px;
}

.bottom-title {
  color: #6b1e5e;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .guidelines-container {
    flex-direction: column;
  }
  .btn-register {
    width: 100%;
  }
  .fee-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
.download-link {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 16px 20px;
  border-radius: 10px;

  text-decoration: none;
  font-weight: 600;
  font-size: 18px;

  background: #fdeaf3;
  color: #6a0f4c;

  transition: all 0.25s ease;
  box-shadow: 0 6px 16px rgba(106, 15, 76, 0.15);
}

.download-link i {
  font-size: 24px;
}

.download-link span {
  text-decoration: underline;
}

/* Hover effect */
.download-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(106, 15, 76, 0.25);
  background: #f8d6e6;
}

/* Platform accent colors */
.download-link.ios i {
  color: #6a0f4c;
}

.download-link.android i {
  color: #2e7d32;
}
