* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

body {
font-family: 'Segoe UI', sans-serif;
background-image: url(../img/sports/);
background-repeat: no-repeat;
background-position: center;
color: #333;
}

/* Hero Section */
.hero-sports {
position: relative;
width: 100%;
height: 90vh;
overflow: hidden;
}

.hero-sports video {
position: absolute;
top: 0; left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -1;
}

.hero-content-sports {
position: relative;
z-index: 1;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
background: rgba(0, 0, 0, 0.4);
}

.hero-content-sports h1,
.hero-content-sports p {
  color: white;
}

.hero-sports h1 {
font-size: 4rem;
margin-bottom: 10px;
}

.hero-sports p {
font-size: 1.5rem;
max-width: 600px;
}

/* Services Section */
.services {
padding: 60px 20px;
max-width: 1200px;
margin: 0 auto;
}

.services h2 {
text-align: center;
font-size: 2.8rem;
margin-bottom: 40px;
color: #2c3e50;
}

.card-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}

.card {
background: white;
border-radius: 12px;
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
overflow: hidden;
}

.card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.card img {
width: 100%;
height: 180px;
object-fit: cover;
}

.card-content {
padding: 20px;
}

.card-content h3 {
font-size: 1.4rem;
margin-bottom: 10px;
color: #2c3e50;
}

.card-content p {
color: #666;
font-size: 1rem;
margin-bottom: 15px;
}

.card-content button {
background: #27ae60;
color: white;
border: none;
padding: 10px 16px;
border-radius: 6px;
cursor: pointer;
transition: background 0.3s;
}

.card-content button:hover {
background: #219150;
}

@media (max-width: 768px) {
.hero h1 {
    font-size: 2.5rem;
}
.hero p {
    font-size: 1.1rem;
}
}