body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* HEADER */
header {
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  border-bottom: 2px solid #eee;
}

.logo {
  font-size: 24px;
  color: #fb003f;
}

.logo img {
  width: 50px;
  height: 50px;
}

nav a {
  margin: 15px;
  text-decoration: none;
  color: #000;
}

.btn {
  background-color: #e3003a;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
}

/* HERO */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000 url('background.jpg') no-repeat center center;
  background-size: cover;
  color: white;
  padding: 60px 50px;
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 36px;
}

.hero-img img {
  height: 300px;
  border-radius: 10px;
}

.hero-text img {
  width: 100%;
  max-width: 1440px;
  height: auto;
}

.mirzazim {
  margin-top: 10px;
  background: orange;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
}

/* SERVICES */
.services {
  padding: 50px;
  text-align: center;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.card {
  width: 250px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  border-radius: 10px;
}

/* CONTACT */
.contact {
  background: #0dd7e7;
  color: #000;
  padding: 50px;
  text-align: center;
}

.contact-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.contact-wrapper img {
  width: 513px;
  height: 331px;
  border-radius: 10px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

form input, form textarea {
  padding: 10px;
  width: 300px;
  border: none;
  border-radius: 10px;
}

form button {
  background-color: #000;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

/* FOOTER */
footer {
  background: #111;
  color: white;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links a {
  margin: 0 15px;
  color: white;
  text-decoration: none;
}
.button {
  color: rgb(247, 244, 244);       /* цвет ссылки */
  text-decoration: none;
  background-color: #000;
   /* убирает подчёркивание */
   border-radius: 5px;
}

.button:hover {
  color: black;       /* чтобы при наведении не менялся цвет */
  text-decoration: none;
}

