@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background-color: #f5f5f7;
  color: #1d1d1f;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 20px 40px;
  border-bottom: 1px solid #ddd;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #1d1d1f;
  font-weight: 500;
}

.nav-links a:hover {
  color: #0071e3;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-gif {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.hero-text {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 20px;
}

.hero-text h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.button {
  display: inline-block;
  background-color: #0071e3;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 25px;
}

.button:hover {
  background-color: #005bb5;
}

.content {
  width: 90%;
  max-width: 1100px;
  margin: 40px auto;
}

.intro {
  margin-bottom: 40px;
  text-align: center;
}

.intro h2 {
  margin-bottom: 15px;
  font-size: 2rem;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background-color: white;
  padding: 25px;
  border-radius: 12px;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  margin-bottom: 15px;
}

.card a {
  color: #0071e3;
  text-decoration: none;
  font-weight: bold;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #ffffff;
  margin-top: 40px;
  border-top: 1px solid #ddd;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
  }

  .hero-text h2 {
    font-size: 2.2rem;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }
}

.video-container {
  display: flex;
  justify-content: center;
  margin: 40px auto;
  width: 100%;
}

.video-container iframe {
  width: 80%;
  max-width: 900px;
  height: 500px;
  border: none;
}
.page-image {
  display: block;
  width: 100%;
  max-width: 700px;
  margin: 20px auto;
  border-radius: 12px;
}
