body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: url('../images/background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.8);
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 40px;
  box-sizing: border-box;
}

.left-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 60%;
  max-height: 85vh;
  border: 4px solid #00c853;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 200, 83, 0.5);
}

.right-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 40px;
  align-items: center;
  text-align: center;
}

.title-section h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: normal;
}

.title-section p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #ccc;
}

.button {
  display: block;
  width: 100%;
  max-width: 340px;
  margin: 12px 0;
  padding: 18px;
  border: none;
  border-radius: 30px;
  font-size: 1.15rem;
  font-weight: bold;
  text-decoration: none;
  background-color: #00c853;
  color: #fff;
  transition: background-color 0.3s;
  text-align: center;
}

.button:hover {
  background-color: #00a043;
}

.rating {
  margin-top: 30px;
  font-size: 0.75rem;
  color: #90ee90;
}

p.address-info {
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
}

p.address-info a {
  color: #00c853;
  text-decoration: none;
}

p.address-info a:hover {
  text-decoration: underline;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

.whatsapp-float a {
  background-color: #25D366;
  color: white;
  padding: 16px 26px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  font-size: 18px;
}

@media (max-width: 768px) {
  .overlay {
    flex-direction: column;
    padding: 20px;
  }

  .left-section,
  .right-section {
    width: 100%;
    padding: 0;
  }

  .logo {
    width: 82%;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .right-section {
    padding-left: 0;
  }

  .title-section h1 {
    font-size: 1.5rem;
  }

  .title-section p {
    font-size: 1.1rem;
  }

  .button {
    font-size: 1rem;
    padding: 14px;
    max-width: 100%;
  }

  p.address-info {
    font-size: 0.9rem;
  }

  .rating {
    font-size: 0.7rem;
  }
}