/* Prospectus Section Styles */
.prospectus-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.prospectus-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>')
    no-repeat bottom;
  background-size: cover;
  opacity: 0.3;
}

.prospectus-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

.prospectus-header {
  text-align: center;
  margin-bottom: 50px;
}

.prospectus-header h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.prospectus-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.prospectus-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.prospectus-text {
  flex: 1;
  min-width: 300px;
}

.prospectus-text h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
}

.prospectus-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.prospectus-features li {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  margin-bottom: 15px;
  padding-left: 35px;
  position: relative;
}

.prospectus-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #4cd3e3;
  background: rgba(255, 255, 255, 0.2);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.prospectus-card {
  flex: 1;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.prospectus-card:hover {
  transform: translateY(-10px);
}

.prospectus-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.prospectus-icon i {
  font-size: 45px;
  color: #fff;
}

.prospectus-card h4 {
  color: #333;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

.prospectus-card p {
  color: #666;
  font-size: 15px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.prospectus-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.prospectus-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
  color: #fff;
}

.prospectus-btn i {
  font-size: 18px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .prospectus-section {
    padding: 60px 0;
  }

  .prospectus-header h2 {
    font-size: 36px;
  }

  .prospectus-content {
    flex-direction: column;
  }

  .prospectus-text,
  .prospectus-card {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .prospectus-header h2 {
    font-size: 30px;
  }

  .prospectus-header p {
    font-size: 16px;
  }

  .prospectus-text h3 {
    font-size: 24px;
  }

  .prospectus-card {
    padding: 30px 20px;
  }

  .prospectus-icon {
    width: 80px;
    height: 80px;
  }

  .prospectus-icon i {
    font-size: 35px;
  }
}

@media (max-width: 576px) {
  .prospectus-section {
    padding: 40px 0;
  }

  .prospectus-header h2 {
    font-size: 26px;
  }

  .prospectus-btn {
    padding: 12px 25px;
    font-size: 14px;
  }
}
