* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Tahoma", Arial, sans-serif;
}

/* HEADER */
.main-header {
  background-color: #ffffff;
  padding: 25px;
  display: flex;
  justify-content: center;
  border-bottom: 4px solid #c62828;
}

.main-header img {
  height: 90px;
}

/* HERO */
.hero {
  background-color: #f4f6f8;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
}

.hero img {
  max-width: 1100px;
  width: 30%;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.ltr {
  direction: ltr;
  unicode-bidi: embed;
}
/* INFO CARDS */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  padding: 60px 30px;
  background-color: #ffffff;
}

.card {
  background: #f9f9f9;
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card i {
  font-size: 40px;
  color: #c62828;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #333;
}

.card p {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #555;
}

.card a,
.card span {
  font-weight: bold;
  color: #c62828;
  text-decoration: none;
}

/* ABOUT */
.about {
  background: linear-gradient(135deg, #c62828, #ef5350);
  color: #fff;
  padding: 70px 25px;
  text-align: center;
}

.about h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
}

.about p {
  max-width: 900px;
  margin: auto;
  font-size: 1.25rem;
  line-height: 2;
}

/* FOOTER */
footer {
  background-color: #1e1e1e;
  color: #ccc;
  text-align: center;
  padding: 18px;
  font-size: 1rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .main-header img {
    height: 75px;
  }
  
  .hero img {
    width: 100%;
}
}
