/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
  line-height: 1.6;
  color: #333;
}
         
.image-container {
    text-align: center;
    margin-top: 20px;
}

img {
    max-width: 100%;
    width: 200px; /* You can adjust the width to your desired size */
    height: auto;
}

/* Hero section */
.hero-section {
  height: 100vh;
  background-image: url("image.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  max-width: 800px;
  margin: 1rem auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  color: #fff;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn-primary {
  background-color: #ff0000;
  color: white;
  border: none;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #cc0000;
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.btn-secondary:hover {
  background-color: white;
  color: #333;
}

/* Footer */
.footer {
  background-image: url("bg.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 1rem 2rem 2rem;
  border-top: 3px solid white;
}

.disclaimer {
  text-align: center;
  max-width: 800px;
  margin: 1rem auto 2rem;
  padding: 1rem;
  font-size: 1rem;
  color: white;
}

.copyright {
  text-align: center;
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 3px solid red;
}

/* Responsive styles */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

   img {
    width: 150px; /* Adjust for mobile */
  }
  
  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}
