body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #111;
}
header {
  background: url('/photo_2023-03-23_20-44-20.jpg') no-repeat center/cover;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}
header h1, header p {
  position: relative;
  z-index: 1;
}
nav {
  display: flex;
  justify-content: center;
  background: #222;
}
nav a {
  color: white;
  padding: 1rem;
  text-decoration: none;
}
nav a:hover {
  background: #4caf50;
}
section {
  padding: 3rem;
  max-width: 1000px;
  margin: auto;
}
.hero {
  background: #f9f9f9;
  color: #111;
  text-align: center;
  padding: 5rem 2rem;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.card {
  background-color: #e0e0e0;       /* Светло-серый фон */
  color: #111;                     /* Тёмный текст */
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #ccc;          /* Граница */
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);  /* Тень */
  transition: transform 0.2s ease;
}
.card:hover {
  transform: translateY(-5px);     /* Лёгкий подъём при наведении */
}
ы
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 2rem;
}
.photo-preview {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 1rem;
}
.cta-button {
  display: inline-block;
  background: #4caf50;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-top: 1.5rem;
}
.cta-button:hover {
  background: #388e3c;
}
.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.contact-link {
  background: #4caf50;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.3s ease;
}
.contact-link:hover {
  background: #388e3c;
}
