/* إعدادات عامة */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Cairo", sans-serif;
}
body {
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
  direction: rtl;
}

/* الحاوية */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* الهيدر */
.header {
  background: #fff;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  height: 50px;
}
.nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}
.nav a:hover {
  color: #050d70;
}

/* البطل */
.hero {
  background: url("../partner/img/hero.png") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.hero h1 span {
  color: #050d70;
  text-shadow: 1px 1px 0 #f7f7f7, 1px -1px 0 #f7f7f7, -1px -1px 0 #f7f7f7, -1px 1px 0 #f7f7f7;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #050d70;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}
.btn:hover {
  background: #e65500;
}

/* المميزات */
.features {
  padding: 60px 20px;
  text-align: center;
}
.features h2 {
  margin-bottom: 30px;
  font-size: 2rem;
}
.features ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}
.features li {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* العرض */
.offer {
  background: #050d70;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}
.offer h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}
.offer p {
  margin-bottom: 30px;
  font-size: 1.3rem;
}

/* تواصل */
.contact {
  padding: 60px 20px;
  text-align: center;
}
.contact h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}
.contact p {
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.contact a {
  font-weight: bold;
  text-decoration: none;
}
.contact a:hover {
  text-decoration: underline;
}

/* الفوتر */
.footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* الاستجابة */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .features ul {
    grid-template-columns: 1fr;
  }
}
/* QR Code Section */
.qr-section {
  background: #f9f9f9;
  padding: 60px 20px;
  color: #333;
}

.qr-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.qr-section h2 {
  text-align: center;
  color: #00056f;
  margin-bottom: 20px;
  font-size: 28px;
}

.qr-section .intro {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.qr-section h3 {
  color: #050d70;
  margin: 20px 0 10px;
}

.qr-section ul {
  list-style: none;
  padding: 0;
}

.qr-section ul li {
  margin: 10px 0;
  padding-right: 20px;
  position: relative;
}

.qr-section ul li::before {
  content: "✔️";
  padding-left: 10px;
  color: #00056f;
}

.qr-section a {
  font-weight: bold;
  text-decoration: none;
}

.qr-section a:hover {
  text-decoration: underline;
}

.qr-section .qr-conclusion {
  text-align: center;
  margin-top: 40px;
}

.qr-section .cta-btn {
  display: inline-block;
  background: #00056f;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  margin-top: 20px;
  font-size: 16px;
  transition: 0.3s;
}

.qr-section .cta-btn:hover {
  background: #050d70;
}
