/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Header */
header {
  background-color: #f5f5f5;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #222;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.2s;
}

nav ul li a:hover {
  color: #e67e22;
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 60px 40px;
  background-color: #fff;
  gap: 40px;
}

.hero-text h1 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #2c3e50;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #e67e22;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #cf711f;
}

.hero img {
  width: 100%;
  border-radius: 10px;
}

/* Services Section */
.services {
  padding: 60px 40px;
  background-color: #f9f9f9;
  text-align: center;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #2c3e50;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 20px;
  max-width: 280px;
  text-align: left;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.card p {
  font-size: 15px;
  color: #555;
}

/* Contact Section */
.contact {
  padding: 60px 40px;
  background-color: #fff;
  text-align: center;
}

.contact h2 {
  font-size: 30px;
  margin-bottom: 30px;
  color: #2c3e50;
}

form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

button {
  padding: 12px;
  background-color: #2980b9;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

button:hover {
  background-color: #1f6391;
}

/* Footer */
footer {
  margin-top: 60px;
  padding: 20px 40px;
  background-color: #2c3e50;
  color: white;
  text-align: center;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero img {
    margin-top: 30px;
  }

  .service-cards {
    flex-direction: column;
    align-items: center;
  }
}
