/* common.css */
body {
  margin: 0;
  font-family: 'Tajawal', sans-serif;
  background-color: #fcf8f0;
  color: #333;
}

header {
  background-color: #fcf8f0;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
  width: 160px;
  height: auto;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5rem;
  color: #0a6e46;
}

.intro {
  font-size: 1.3rem;
  margin-top: 10px;
  max-width: 700px;
  margin-inline: auto;
}

.header-action {
  margin-top: 15px;
}

.btn-main {
  display: inline-block;
  padding: 10px 20px;
  background-color: #e6a817;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-main:hover {
  background-color: #c58d12;
}

section {
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: #084c7f;
  margin-bottom: 30px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background-color: #e6a817;
  margin: 15px auto 0;
}

.values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
}

.value-title {
  font-size: 1.4rem;
  color: #0a6e46;
  margin-bottom: 10px;
}

.value-text {
  font-size: 1rem;
  line-height: 1.8;
}

footer {
  background-color: #0a6e46;
  color: white;
  padding: 30px 20px;
  text-align: center;
}

.footer-text {
  max-width: 600px;
  margin: auto;
  font-size: 1rem;
}

.footer-link {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
}

