
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #f0f4ff, #e9f3ff);
  color: #333;
}

.page-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}


.site-header {
  background: #2e5da3;
  color: white;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  animation: slideDown 0.7s ease;
}

.site-header h1 {
  margin: 0;
  font-size: 26px;
}

.site-header nav {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.site-header nav a,
.site-header nav button {
  color: white;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 25px;
  transition: background 0.3s;
}

.site-header nav a:hover,
.site-header nav button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.site-header nav button {
  background: white;
  color: #2e5da3;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

/* Секция */
.section {
  margin-top: 40px;
}

.section h2 {
  font-size: 24px;
  border-left: 5px solid #2e5da3;
  padding-left: 10px;
  margin-bottom: 20px;
}

/* Карточкалар */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 0.5s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.card p {
  margin: 0 0 10px;
  font-weight: 500;
}

.card strong {
  color: #2e5da3;
}

/* Анимациялар */
@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    transform: scale(0.90);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}



.img img{
  width: 100px;

}

.text__flex{
  font-size: 23px;
}

.flex{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}