
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Cairo', sans-serif;
  background: linear-gradient(120deg, #0f172a, #009688);
  color: #1a202c;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

/* HEADER */
.custom-header {
  width: 100vw;
  background: #ffffffee;
  backdrop-filter: blur(12px);
  padding: 1rem 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  position: relative;
  left: 0;
  right: 0;
  z-index: 1000;
}


.header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.header-logo {
  height: 50px;
  margin: 0;
  background: transparent;
  mix-blend-mode: multiply; 
  border-radius: 10px;
}


.header-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a202c;
}

.header-title span {
  font-weight: 400;
  color: #4a5568;
}

/* MAIN */
.container {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  max-width: 850px;
  width: 90%;
  margin: 3rem auto;
  text-align: center;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.logo {
  width: 120px;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2rem;
  color: #1a202c;
  margin-bottom: 1rem;
}

p {
  font-size: 1.1rem;
  color: #374151;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

ul {
  list-style: none;
  padding-left: 0;
  margin: 0 auto 2rem;
  max-width: 700px;
  text-align: left;
}

ul li {
  margin: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
}

ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: #10b981;
  font-weight: bold;
}

/* BUTTON */
.button {
  background-color: #3b82f6;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.button:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
}

/* FOOTER */
.custom-footer {
  background-color: #f4f6fa; 
  color: #1a202c;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  width: 100vw;
  margin-top: auto;
  position: relative;
  left: 0;
  right: 0;
  box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.05);
}

.custom-footer a,
.custom-footer strong {
  color: #2b6cb0;
  text-decoration: none;
}

.custom-footer a:hover {
  text-decoration: underline;
}


.social-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2);
}

ul[dir="rtl"], [dir="rtl"] ul {
  text-align: right;
  direction: rtl;
  padding-right: 1.2rem;
}

ul[dir="rtl"] li, [dir="rtl"] ul li {
  direction: rtl;
  text-align: right;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
  }
  

  .header-title {
    font-size: 1.1rem;
    text-align: center;
  }

  .container {
    padding: 2rem 1rem;
  }

  .button {
    width: 100%;
  }
}

