/* Reset and base */
body {
  margin: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #333;
  background: #f8f9fa;
  line-height: 1.6;
}

a {
  color: #007BFF;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

/* Header */
header {
  background: white;
  border-bottom: 1px solid #ddd;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


nav a {
  margin-left: 20px;
  font-weight: 500;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #007BFF 0%, #00BFFF 100%);
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
}

.cta {
  display: inline-block;
  margin-top: 20px;
  background: white;
  color: #007BFF;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
}

/* Services */
.services {
  background: white;
  text-align: center;
}

.services h2 {
  margin-bottom: 40px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-item {
  background: #f1f3f5;
  padding: 20px;
  border-radius: 8px;
}

/* About */
.about {
  text-align: center;
}

/* Contact */
.contact {
  background: #007BFF;
  color: white;
  text-align: center;
}

.contact a {
  color: #FFD700;
}

/* Footer */
footer {
  background: #333;
  color: #ccc;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    text-align: center;
  }

  nav a {
    margin: 10px;
    display: inline-block;
  }

  .hero {
    padding: 60px 20px;
  }
}
