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

body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  color: #333;
  line-height: 1.6;
  background: #f9fafb;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #1f2937;
  color: #fff;
}

header h1 {
  font-size: 1.6rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-size: 1rem;
}

nav a:hover {
  border-bottom: 2px solid #10b981;
}

/* Hero with background image */
.hero {
  background: linear-gradient(rgba(16, 185, 129, 0.8), rgba(5, 150, 105, 0.8)),
              url('images/embedded-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero a {
  background: #fff;
  color: #059669;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.hero a:hover {
  background: #f0fdf4;
}

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

h2.section-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
  color: #059669;
}

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

.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.service-card img {
  width: 50px;
  margin-bottom: 15px;
}

.service-card h3 {
  margin-bottom: 10px;
  color: #059669;
}

/* Contact Form */
form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

button {
  padding: 10px;
  background: #059669;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

button:hover {
  background: #047857;
}

/* Footer */
footer {
  text-align: center;
  background: #1f2937;
  color: #fff;
  padding: 15px;
  margin-top: 30px;
}

/* Responsive Nav */
@media (max-width: 768px) {
  nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}
