.ebpdf1-section {
  padding: 80px 0;
  background-color: #f8f9fa;
  font-family: "Cairo", sans-serif;
  direction: rtl;
}

.ebpdf1-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ebpdf1-header {
  text-align: center;
  margin-bottom: 50px;
}

.ebpdf1-title {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.ebpdf1-subtitle {
  color: #7f8c8d;
}

.ebpdf1-divider {
  width: 80px;
  height: 4px;
  background: #f1c40f; /* لون السدرة الأصفر */
  margin: 15px auto;
}

.ebpdf1-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  gap: 25px;
}

.ebpdf1-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}

.ebpdf1-card:hover {
  transform: translateY(-5px);
}

.ebpdf1-icon {
  font-size: 2.5rem;
  color: #2373a7; /* لون أيقونة PDF */
  margin-bottom: 20px;
}

.ebpdf1-card-title {
  font-size: 1.25rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.ebpdf1-card-desc {
  font-size: 0.95rem;
  color: #636e72;
  margin-bottom: 25px;
  line-height: 1.6;
}

.ebpdf1-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
}

.ebpdf1-btn {
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  flex: 1;
  text-align: center;
  transition: 0.3s;
}

.ebpdf1-btn.preview {
  background: #ecf0f1;
  color: #2c3e50;
}

.ebpdf1-btn.preview:hover {
  background: #bdc3c7;
}

.ebpdf1-btn.download {
  background: #2c3e50;
  color: #fff;
}

.ebpdf1-btn.download:hover {
  background: #96bf59;
  color: #2c3e50;
}

@media (max-width: 768px) {
  .ebpdf1-grid {
    grid-template-columns: 1fr;
  }
}
