* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* BODY BACKGROUND IMAGE FIXED */
body {
  color: #333;
  line-height: 1.6;
  background-image: url("image/image1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
/* HERO SECTION */
.hero {
  height: 85vh;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("bg.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-text h1 {
  font-size: 48px;
}

.hero-text p {
  font-size: 22px;
  margin-top: 10px;
}

/* NAVBAR */
.navbar {
  background: #c62828;
  display: flex;
  justify-content: center;
  padding: 15px;
}

.navbar a {
  color: white;
  text-decoration: none;
  margin: 0 20px;
  font-weight: bold;
}

.navbar a:hover {
  text-decoration: underline;
}

/* SECTIONS */
.section {
  padding: 60px 10%;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #c62828;
}

.section.light {
  background: white;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card h3 {
  margin-bottom: 10px;
  color: #b71c1c;
}

/* LIST */
ul {
  list-style: none;
}

ul li {
  font-size: 18px;
  margin-bottom: 10px; 
  color: #ffffff;
}

/* FOOTER */
.footer {
  background: #c62828;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 36px;
  }
}

/* HERO SECTION */
.hero {
  height: 85vh;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("bg.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-text h1 {
  font-size: 48px;
}

.hero-text p {
  font-size: 22px;
  margin-top: 10px;
}

/* NAVBAR */
.navbar {
  background: #c62828;
  display: flex;
  justify-content: center;
  padding: 15px;
}

.navbar a {
  color: white;
  text-decoration: none;
  margin: 0 20px;
  font-weight: bold;
}

.navbar a:hover {
  text-decoration: underline;
}

/* SECTIONS */
.section {
  padding: 60px 10%;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #c62828;
}

.section.light {
  background: white;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card h3 {
  margin-bottom: 10px;
  color: #b71c1c;
}

/* LIST */
ul {
  list-style: none;
}

ul li {
  font-size: 18px;
  margin-bottom: 10px;
}

/* FOOTER */
.footer {
  background: #c62828;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 36px;
  }
}