* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  background-image: url('../images/swathi-page-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: Arial, sans-serif;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 15px;
}

.centered-text {
  padding: 20px;
  width: 100%;
  max-width: 100%;
}

.centered-text h1 {
  font-weight: 700;
  font-size: 45px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0 auto;
  width: 100%;
  line-height: 1.2;
  z-index: 1;
}

.centered-text p {
  font-size: 18px;
  color: #fff;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .centered-text h1 {
    font-size: 26px;
  }

  .centered-text p {
    font-size: 16px;
    margin-top: 20px;
  }
}


