* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Tahoma, Arial, sans-serif;
  background: #ffffff;
  color: #222;
  line-height: 1.8;
}

.header {
  text-align: center;
  padding: 35px 20px;
  background: #ffffff;
}

.logo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.header h1 {
  color: #9b111e;
  font-size: 34px;
  margin-top: 15px;
}

.header p {
  color: #555;
  font-size: 18px;
}

.hero {
  margin: 20px auto;
  width: 90%;
  min-height: 330px;
  border-radius: 35px;
  background: linear-gradient(135deg, #9b111e, #c99a2e);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero p {
  max-width: 650px;
  font-size: 20px;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  background: white;
  color: #9b111e;
  padding: 13px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
}

.menu {
  padding: 40px 6%;
  text-align: center;
}

.menu h2,
.app h2 {
  font-size: 32px;
  color: #9b111e;
  margin-bottom: 30px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.card {
  background: #ffffff;
  border-radius: 28px;
  padding: 15px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.12);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-7px);
}

.card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 24px;
  background: #fff;
}

.card h3 {
  margin-top: 12px;
  color: #333;
  font-size: 19px;
}

.app {
  padding: 45px 6%;
  text-align: center;
  background: #fafafa;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}

.features div {
  background: white;
  padding: 25px;
  border-radius: 25px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  font-size: 18px;
  font-weight: bold;
  color: #9b111e;
}

footer {
  text-align: center;
  padding: 25px;
  background: #9b111e;
  color: white;
}

footer a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

.page {
  width: 90%;
  max-width: 900px;
  margin: 40px auto;
  background: white;
  padding: 35px;
  border-radius: 30px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.12);
}

.page h1 {
  color: #9b111e;
  margin-bottom: 20px;
}

.page p,
.page li {
  font-size: 18px;
  color: #333;
}

@media (max-width: 600px) {
  .header h1 {
    font-size: 27px;
  }

  .hero h2 {
    font-size: 28px;
  }

  .hero p {
    font-size: 17px;
  }
}