.section-container {
  padding: 0 25px;
  display: flex;
  flex-direction: column;
}

.section-title {
  font-size: 30px;
  font-weight: bold;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 20px;
}

.section-block {
  position: relative;
  border-radius: 20px;
  background-color: var(--second-color);
  padding: 25px;
}

/* TEAM GRID */
.team-section {
  margin: 0 0 10px 0;
}

.founder-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid rgb(255, 255, 255);
}

/* EXPERTISE GRID */
.expertise-section {
  margin: 10px 0;
}

.expertise-container div {
  margin: 0 auto;
  padding: 5px 20px;
}

.expertise-container img {
  height: 48px;
  width: auto;
}

/* OUR STORY */
.story-section {
  margin: 10px 0 0 0;
}

.story-section p {
  margin-bottom: 1rem;
  text-align: justify;
}

h1 {
  margin: 0;
  font-weight: bold;
  color: var(--text-color);
}

h2 {
  margin: 0;
  font-weight: bold;
  color: var(--text-color);
}

h3 {
  margin: 0;
  font-weight: 400;
  color: var(--text-color);
}

p {
  margin: 0;
  font-weight: 400;
  color: var(--text-color);
}

a {
  cursor: pointer;
  text-decoration: none;
}

.game-card {
  background-color: var(--second-color);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s ease-in-out;
}

.game-card:hover {
  transform: scale(1.03);
}

.game-card img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
}

.game-card h3 {
  margin-top: 10px;
  font-size: 1.5rem;
  color: var(--text-color);
}

.buttons-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.buttons-container a {
  display: inline-block;
  background-color: var(--main-color);
  padding: 12px 20px;
  color: #FFF;
  border-radius: 25px;
  transition: background-color 0.2s;
  text-decoration: none;
  font-weight: bold;
}

.buttons-container a:hover {
  background-color: var(--hover-color);
}

.founder-grid,
.expertise-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .buttons-container {
    flex-direction: column;
    align-items: center;
  }

  .buttons-container a {
    width: 100%;
    text-align: center;
  }
}