.scholarship-section {
  padding: 60px 0;
}

.scholarship-item {
  margin-bottom: 35px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}

.scholarship-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.scholarship-title {
  color: #003e8f;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.scholarship-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.scholarship-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #003e8f;
}

.scholarship-list li:last-child {
  margin-bottom: 0;
}

.scholarship-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color:#2BAFE3;
  font-size: 1.5rem;
  line-height: 1.2;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
  .scholarship-section {
    padding: 40px 0;
  }

  .scholarship-title {
    font-size: 1.2rem;
  }

  .scholarship-item {
    margin-bottom: 30px;
    padding-bottom: 25px;
  }
}

@media screen and (max-width: 576px) {
  .scholarship-section {
    padding: 30px 0;
  }

  .scholarship-title {
    font-size: 1.1rem;
  }

  .scholarship-list li {
    font-size: 1rem;
  }
}

/* RTI Section Styles */
.rti-section {
  padding: 60px 0;
}

.rti-content {
  margin-bottom: 50px;
}

.rti-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 25px;
  text-align: justify;
}

.rti-subtitle {
  color: var(--dark-blue);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 30px;
}

.rti-link-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-top: 30px;
}

.rti-link {
  color: var(--light-blue);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.rti-link:hover {
  color: var(--dark-blue);
  text-decoration: underline;
}

/* RTI Buttons */
.rti-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.rti-btn {
  display: block;
  padding: 20px 30px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.rti-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: white;
}

.declaration-btn {
  background: linear-gradient(135deg, #e57373 0%, #d32f2f 100%);
}

.declaration-btn:hover {
  background: linear-gradient(135deg, #ef5350 0%, #c62828 100%);
}

.form-btn {
  background: linear-gradient(135deg, #81c784 0%, #388e3c 100%);
}

.form-btn:hover {
  background: linear-gradient(135deg, #66bb6a 0%, #2e7d32 100%);
}

.gazette-btn {
  background: linear-gradient(135deg, #64b5f6 0%, #1976d2 100%);
}

.gazette-btn:hover {
  background: linear-gradient(135deg, #42a5f5 0%, #1565c0 100%);
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
  .rti-section {
    padding: 40px 0;
  }

  .rti-subtitle {
    font-size: 1.2rem;
  }

  .rti-buttons {
    gap: 20px;
    margin-top: 40px;
  }

  .rti-btn {
    font-size: 1.1rem;
    padding: 18px 25px;
  }
}

@media screen and (max-width: 768px) {
  .rti-buttons {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 576px) {
  .rti-section {
    padding: 30px 0;
  }

  .rti-text,
  .rti-link-text {
    font-size: 1rem;
  }

  .rti-subtitle {
    font-size: 1.1rem;
  }

  .rti-btn {
    font-size: 1rem;
    padding: 16px 20px;
  }

  .rti-buttons {
    margin-top: 30px;
    padding-top: 30px;
  }
}

.ebook-container {
  padding: 50px;
}

.ebook-content {
  padding: 50px 40px;
}

.ebook-icon-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.ebook-icon {
  width: 80px;
  height: 80px;
  color: var(--light-blue);
  stroke-width: 1.5;
}

.ebook-description {
  margin-bottom: 50px;
}

.ebook-description p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
}

.ebook-description p:last-child {
  margin-bottom: 0;
}

.ebook-description strong {
  color: var(--dark-blue);
  font-weight: 600;
}

@media screen and (max-width: 991px) {
  .ebook-icon {
    width: 70px;
    height: 70px;
  }

  .ebook-description p {
    font-size: 1.05rem;
  }
}

@media screen and (max-width: 768px) {
  .ebook-icon {
    width: 60px;
    height: 60px;
  }

  .ebook-description {
    margin-bottom: 40px;
  }

  .ebook-description p {
    font-size: 1rem;
    text-align: left;
  }
}

@media screen and (max-width: 576px) {
  .ebook-content {
    padding: 30px 20px;
  }

  .ebook-icon-wrapper {
    margin-bottom: 30px;
  }

  .ebook-icon {
    width: 50px;
    height: 50px;
  }

  .ebook-description {
    margin-bottom: 35px;
  }

  .ebook-description p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}
