/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Header Styles */
#header {
  background: #007bff;
  color: #fff;
  padding: 15px 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar ul {
  display: flex;
  gap: 20px;
}

.navbar ul li a {
  color: #fff;
  font-weight: 600;
}

/* Hero Section */
#hero {
  background: #f8f9fa;
  padding: 100px 0;
  text-align: center;
}

#hero h1 {
  font-size: 2.5rem;
  color: #007bff;
}

#hero .btn-primary {
  margin-top: 20px;
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  border-radius: 5px;
  font-weight: 600;
}

/* Section Styles */
section {
  padding: 60px 0;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #007bff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-item {
  background: #f8f9fa;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: center;
}

/* Contact Form */
#contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#contact input, #contact textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

#contact .btn-primary {
  padding: 10px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
}

/* Footer */
#footer {
  background: #007bff;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

#footer .social-links a {
  color: #fff;
  margin: 0 10px;
}
