:root {
  /* اعتماد نفس لوحة الألوان الخاصة بالصفحة الرئيسية (Forest Green Palette) */
  --green-primary: #14532d;
  --green-accent: #166534;
  --green-hover: #052e16;
  
  --bg-page: #f3f4f6;
  --card-bg: #ffffff;
  --text-main: #1f2937;
  --text-muted: #6b7280;
  --border-color: #e5e7eb;
  
  --green-light: #f0fdf4;
  --green-border: #bbf7d0;
  
  --radius-lg: 16px;
  --radius-md: 10px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', 'Cairo', sans-serif;
  background-color: var(--bg-page);
  color: var(--text-main);
  padding-bottom: 60px;
}

/* Top Navigation - مطابق تماماً للصفحة الرئيسية */
.navbar {
  background: #ffffff;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 20px;
  color: var(--green-primary);
  text-decoration: none;
}

.brand-icon {
  width: 40px;
  height: 40px;
  background: var(--green-primary);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(20, 83, 45, 0.2);
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  color: var(--green-primary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s;
  padding: 6px 12px;
  border-radius: var(--radius-md);
}

.nav-links a:hover, 
.nav-links a.active { 
  color: #ffffff; 
  background-color: var(--green-primary);
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--green-primary);
  font-size: 20px;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s;
}

.menu-toggle:hover {
  background: #f3f4f6;
}

/* Breadcrumbs */
.breadcrumb-wrapper {
  max-width: 1100px;
  margin: 20px auto 0;
  padding: 0 20px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  align-items: center;
}

.breadcrumb a {
  color: var(--green-primary);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb a:hover { text-decoration: underline; }

/* Hero Header - متناسق مع تصميم الصفحة الرئيسية */
.hero {
  background: linear-gradient(180deg, #f8f9fa 0%, var(--bg-page) 100%);
  color: var(--text-main);
  padding: 48px 20px 32px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  margin-top: 15px;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--green-primary);
  letter-spacing: -0.02em;
}

.hero p {
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

/* Content Cards Section */
.container {
  max-width: 1100px;
  margin: 30px auto 0;
  padding: 0 20px;
}

.info-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border-color);
  margin-bottom: 24px;
}

.info-card h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 22px;
  color: var(--green-primary);
  font-weight: 800;
}

.info-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 16px;
}

/* Grid for Indicators */
.indicators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.indicator-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--green-primary);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
  transition: all 0.2s ease;
}

.indicator-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border-color: var(--green-accent);
}

.indicator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.indicator-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--green-primary);
}

.indicator-weight {
  background: var(--green-light);
  color: var(--green-primary);
  font-size: 13px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--green-border);
}

.indicator-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Footer */
footer {
  margin-top: 60px;
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
}

/* Mobile Responsive Rules */
@media (max-width: 768px) {
  .navbar {
    padding: 18px 20px;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 16px 20px;
    gap: 14px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links a {
    width: 100%;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
  }
  .nav-links a:last-child {
    border-bottom: none;
  }
}