body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f2f2f2;
}

/* HEADER */
header {
  background: #ffffff;
  border-bottom: 1px solid #ddd;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #c62828;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.flags img {
  width: 22px;
  margin-left: 5px;
  cursor: pointer;
}

.login-box input {
  padding: 5px;
  margin-right: 5px;
}

/* LAYOUT */
.container {
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  gap: 15px;
  padding: 20px;
}

/* ADS */
.ad {
  background: #ddd;
  height: 250px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 14px;
}

/* CENTER */
.center {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
}

.section-title {
  font-size: 18px;
  margin: 15px 0 10px;
  border-bottom: 2px solid #c62828;
  display: inline-block;
}

/* PROFILE SLIDER */
.profiles {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  margin-bottom: 25px;
}

.profile {
  min-width: 130px;
  background: #eee;
  border-radius: 6px;
  text-align: center;
  padding: 10px;
}

.profile img {
  width: 100%;
  border-radius: 6px;
}

/* FOOTER */
footer {
  background: #ffffff;
  text-align: center;
  padding: 10px;
  font-size: 13px;
  color: #777;
  margin-top: 20px;
}
