body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to right, #004aad, #a50044); /* Барселона түстері */
  color: #ffffff;
}

header, footer {
  background-color: #a50044; /* Қызыл */
  color: #ffcc00; /* Сары жазу */
  text-align: center;
  padding: 1.2rem;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

main {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Сол жаққа */
}

section {
  background: rgba(255, 203, 33, 0.7);
  color: #000000;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  border-left: 8px solid #a50044; /* Көк екпін */
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  width: 1750px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
  transform: translateX(5px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

h2 {
  color: #004aad;
  margin-bottom: 0.8rem;
}

ul {
  padding-left: 1.2rem;
}

li {
  margin-bottom: 0.4rem;
}

.home-button {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-image: url('https://img.icons8.com/ios/452/home.png');
  background-size: cover;
  background-position: center;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
  position: fixed;
  bottom: 20px;
  right: 20px;
}
.home-button:hover {
  background-color: #ffd700;
}
