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

body {
  font-family: 'Arial', sans-serif;
  background-color: #0e0e0e;
  color: #fff;
}

.container {
  width: 80%;
  margin: 0 auto;
}

/* Header / Landing Page */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('background.jpg') no-repeat center center/cover;
  text-align: center;
}

.logo {
  width: 200px;
  margin-bottom: 20px;
}

h1 {
  font-size: 3rem;
  color: #00baff;
  margin-bottom: 20px;
}

.btn {
  padding: 15px 30px;
  background-color: #00baff;
  color: #fff;
  border: none;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #0087cc;
}

/* About Section */
.section {
  padding: 50px 0;
}

.about h2 {
  font-size: 2.5rem;
  color: #00baff;
}

.about p {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 800px;
  margin: 20px auto;
}

/* Teams Section */
.teams-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.team-card {
  background-color: #1c1c1c;
  padding: 20px;
  margin: 10px;
  border-radius: 10px;
  text-align: center;
  width: 250px;
}

.team-card h3 {
  color: #00baff;
  font-size: 1.5rem;
}

.team-card p {
  color: #ccc;
}

/* Footer */
.footer {
  background-color: #111;
  padding: 20px 0;
  text-align: center;
  color: #fff;
  font-size: 0.9rem;
}

.footer a {
  color: #00baff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
