* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

.hero {
  background: #1a5c96;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.hero, .custom-button a{
    .custom-button {
      background-color: #4CAF50; /* Green */
      border: none;
      color: white;
      padding: 12px 24px;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      font-size: 16px;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      margin-top: 20px;
    }

    .custom-button:hover {
      background-color: #45a049;
    }
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1rem;
}

.video {
    width: 100%;
}

.about-section {
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-content .text h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.about-content .text p {
  margin-bottom: 12px;
  font-size: 1rem;
}

.about-content .image {
  text-align: center;
}

.about-content .image img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
}

.footer {
  text-align: center;
  padding: 20px;
  background: #1d3557;
  color: #fff;
  font-size: 0.9rem;
}

/* Scroll Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .about-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .about-content .text, 
  .about-content .image {
    flex: 1;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .hero, .custom-button, a{
    .custom-button {
      background-color: #4CAF50; /* Green */
      border: none;
      color: white;
      padding: 12px 24px;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      font-size: 16px;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .custom-button:hover {
      background-color: #45a049;
    }
  }

  .about-content .text h2 {
    font-size: 2rem;
  }

  .video {
    width: 100%;
  }
}
