/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "IBM Plex Mono", monospace;
}

body {
  line-height: 1.6;
  color: #333;
  background-color: #f9fafb;
}

.button-anchor {
  text-decoration: none;
  color: white;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
              url("https://media.istockphoto.com/id/1047259374/photo/programming-source-code-abstract-background.jpg?s=612x612&w=0&k=20&c=07DAFiujCb58Zgu5ZArLprHiSKew5pCGqbTnop9GclA=") 
              center/cover no-repeat;
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero p {
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
}

/* About Us Section */
.about {
  padding: 60px 20px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.about p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
}

/* Partners Section */
.partners {
  padding: 60px 20px;
  text-align: center;
}

.partners h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 600;
}

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

.partner-buttons button {
  background-color: #2563eb;
  color: white;
  border: none;
  padding: 15px 25px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.3s ease;
}

.partner-buttons button:hover {
  background-color: #1e40af;
}

/* Footer */
footer {
  background-color: #111827;
  color: #d1d5db;
  padding: 40px 20px;
  text-align: center;
}

footer p {
  margin: 5px 0;
}

footer strong {
  color: white;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .about h2 {
    font-size: 1.6rem;
  }
  .about p {
    font-size: 1rem;
  }
}


