* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.hero {
  background: url("./src/bghero.jpg") center/cover no-repeat;
  height: 76vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero .overlay {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 30px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  border-radius: 10px;
}

.overlay h2 {
  font-weight: 300;
}

.whatsapp-btn img {
  width: 75%;
  margin-right: 10px;
}

.top-bar {
  background-color: rgba(216, 6, 26, 1);
  color: white;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  height: 13vh;
  font-size: 16pt;
}

.options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.card {
  max-width: 350px;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 15px;
  box-sizing: border-box;
}

.card img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 18pt;
  color: rgba(216, 6, 26, 1);
  font-weight: 300;
  margin: 0px 0 15px;
}

.card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  flex-grow: 1;
}

.card a {
  display: inline-block;
  background-color: #d60000;
  color: white;
  padding: 8px 15px;
  text-decoration: none;
  margin-top: auto;
  align-self: center;
  width: 100%;
}
.big-image{
  width: 100%;
  display: flex;
  justify-content: center;
}

.big-image img {
  width: 60%;
  display: block;
}

.secure {
  text-align: center;
  padding: 20px;
}

.secure img{
  width: 50%;
}

footer {
  background-color: #d60000;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}
