* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #222;
  background: #f6f6f6;
  line-height: 1.5;
}

.container {
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 78vh;
  background: url('angar.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 40px 20px;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: 56px;
  letter-spacing: 1px;
}

.hero p {
  margin: 0 0 24px;
  font-size: 24px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-main {
  background: #f4b400;
  color: #111;
}

.btn-light {
  background: white;
  color: #111;
}

.section {
  padding: 64px 0;
  background: white;
}

.section.alt {
  background: #eceff3;
}

.section h2 {
  margin-top: 0;
  font-size: 32px;
  margin-bottom: 18px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.main-photo {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.contact a {
  color: #0b57d0;
}

@media (max-width: 800px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 20px;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}
