* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #fff;
}

/* Header */
.header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10%;
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
  color: #006400;
}

.logo .dot {
  color: #00b300;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

.nav a:hover {
  color: #00b300;
}

/* Hero Section */
.hero {
  background: url('https://images.unsplash.com/photo-1508098682722-e99c43a406b2?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  color: white;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 10%;
  margin-top: 70px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #00b300;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.btn:hover {
  background: #008000;
}

/* Sections */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 60px 0;
}

h2 {
  text-align: center;
  color: #006400;
  margin-bottom: 20px;
}

.about p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Services */
.services {
  background: #f9f9f9;
  padding: 60px 0;
}

.service-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1;
  min-width: 250px;
  background: white;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Players */
.player-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.player-card {
  flex: 1;
  min-width: 250px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
}

.player-photo {
  height: 200px;
  background: #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* CTA */
.cta {
  background: #006400;
  color: white;
  text-align: center;
  padding: 60px 0;
}

.cta p {
  margin-bottom: 20px;
}

/* Footer */
.footer {
  background: #f1f1f1;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

.footer p {
  margin-bottom: 5px;
}