body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #eaf6ff;
  color: #111;
}

/* Announcement Bar */
.announcement-bar {
  background: #fff;
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
}

.get-app-btn {
  background: linear-gradient(to right, #00A8E8, #3964ED);
  color: #fff;
  padding: 12px 25px;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;    
  transition: background 0.3s ease;
  width: auto; /* Let button size naturally */
  max-width: 100%; /* Ensure it doesn't overflow */
}

/* Main Header */
.main-header {
  text-align: center;
  padding: 40px 20px;
}

.main-header h2 {
  font-size: 24px;
  /* color: #444; */
  margin-bottom: 10px;
}

.main-header h1 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
}

.main-header p {
  max-width: 1200px;
  margin: 0 auto 20px auto;
  font-size: 24px;
  color: #222222;
}

.btn-blue {
  background: linear-gradient(to right, #00A8E8, #3964ED);
  color: white;
  padding: 12px 25px;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  margin-bottom: 20px;
  transition: background 0.3s ease;
  width: auto; /* Let button size naturally */
  max-width: 100%; /* Ensure it doesn't overflow */
  text-decoration: none;    
}



/* Video Section */
.video-section {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.video-container {
  position: relative;
  width: 80%;
  max-width: 800px;
  overflow: hidden;
  border-radius: 10px;
}

#bg-video {
  width: 100%;
  border-radius: 10px;
  display: block;
  filter: brightness(50%);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: red;
  cursor: pointer;
  z-index: 1;
}

/* App Section */
.app-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background: linear-gradient(to bottom, #eaf6ff, #d3edff);
  gap: 40px;
  flex-wrap: wrap;
}

/* Left Text Content */
.app-text {
  max-width: 500px;
  text-align: left;
}

.app-text h2 {
  font-size: 33px;
  margin-bottom: 10px;
  color: #222;
}

.app-text p {
  font-size: 22px;
  color: #444;
  margin-bottom: 20px;
}

/* Buttons */
.app-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.app-buttons img {
  height: 50px;
  cursor: pointer;
}

/* Right Image */
.mobile-preview img {
  width: 300px;
  max-width: 100%;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .app-section {
    flex-direction: column;
    text-align: center;
  }

  .app-text {
    text-align: center;
  }

  .app-buttons {
    justify-content: center;
  }

  .mobile-preview img {
    margin: 0 auto;
  }
}
