* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background:
    linear-gradient(rgba(15, 15, 15, 0.85), rgba(15, 15, 15, 0.92)),
    url("https://images.unsplash.com/photo-1558002038-1055907df827?q=80&w=1600");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.hero {
  min-height: 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-box {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  padding: 26px 32px;
  border-radius: 24px;
  max-width: 1100px;
}

h1 {
  font-size: 4rem;
  margin-bottom: 15px;
}

.subtitle {
  font-size: 1.4rem;
  color: #f5b301;
  margin-bottom: 20px;
}

.description {
  font-size: 1.15rem;
  color: #ddd;
  line-height: 1.8;
}

.buttons {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;

  padding: 16px 26px;
  font-size: 17px;
}

.btn {
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary {
  background: #f5b301;
  color: black;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid #f5b301;
  color: white;
}

.btn-secondary:hover {
  background: #f5b301;
  color: black;
}

.section {
  padding: 15px 0;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 20px;
}

.card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 35px;
}

.card h3 {
  color: #f5b301;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.card p {
  color: #ddd;
  line-height: 1.6;
}

.card ul {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.card li {
  margin: 10px 0;
  color: #ddd;
}

.ai-note {
  margin-top: 18px;
  font-size: 0.95rem;
  color: #bdbdbd;
  line-height: 1.5;
  text-align: center;
}

.about {
  text-align: center;
  max-width: 850px;
  margin: auto;
  line-height: 1.9;
  color: #ddd;
}

.footer {
  text-align: center;
  padding: 50px 0;
  color: #aaa;
}

.footer a {
  color: #f5b301;
  text-decoration: none;
}

.contact {
  font-size: 1.1rem;
  margin-top: 20px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  .hero-box {
    padding: 30px;
  }

  .subtitle {
    font-size: 1.1rem;
  }
}
