/* ===== support LAYOUT ===== */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ===== HEADER ===== */
.page-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.page-header .subtitle {
  font-size: 0.9rem;
  color: #666;
}

.header-underline {
  width: 80px;
  height: 4px;
  background-color: #ff7b00;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

/* ===== INFO SECTIONS ===== */
.info-section {
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}

.info-section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
  border-bottom: 2px solid #ff7b00;
  padding-bottom: 6px;
}

.info-section p,
.info-section li {
  font-size: 1rem;
  color: #444;
}

.info-section ul {
  list-style-type: disc;
  padding-left: 20px;
}

/* ===== FOOTER ===== */
.footer {
  background-color: #f2f2f2;
  border-top: 1px solid #d9d9d9;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  bottom: 0;
  width: 100%;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.footer-links a {
  font-size: 15px;
  font-weight: 600;
  color: #444;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #ff7b00;
}

.footer-social h4 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 28px;
  margin-bottom: 20px;
}

.social-icons a {
  color: #555;
  transition: color 0.3s ease;
}

.social-icons a:hover[aria-label="Facebook"] { color: #1e40af; }
.social-icons a:hover[aria-label="Instagram"] { color: #e1306c; }
.social-icons a:hover[aria-label="TikTok"] { color: #000; }
.social-icons a:hover[aria-label="WhatsApp"] { color: #25D366; }

.footer-info {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

.footer-info a {
  color: #555;
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}

.icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  vertical-align: middle;
  transition: color 0.3s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .page-content {
    padding-top: 10px;
    padding-bottom: 80px;
  }
  .info-section h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .page-content {
    padding-top: 50px;
    padding-bottom: 10px; /* مساحة للفوتر صغيرة */
  }
  .info-section {
    padding: 18px;
  }
  .page-header h1 {
    font-size: 2rem;
  }
  .footer-links ul {
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }
  .social-icons {
    gap: 20px;
    font-size: 24px;
  }
}
