/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
}

.container {
  width: 80%;
  margin: 0 auto;
}

h1, h2, h3 {
  font-weight: 600;
  color: #333;
}

/* Header Styles */
header {
  background-color: #007BFF;
  color: white;
  padding: 15px 0;
  text-align: center;
}

header .logo a {
  text-decoration: none;
  color: white;
  font-size: 30px;
  font-weight: 600;
}

nav ul {
  list-style: none;
  padding: 0;
}

nav ul li {
  display: inline;
  margin: 0 20px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
}

/* Hero Section */
.hero {
  background: #007BFF;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta {
  background-color: #FF6F61;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta:hover {
  background-color: #e65a50;
}

/* About Section */
.about {
  padding: 60px 0;
  background-color: #fff;
}

.about .features {
  list-style: none;
  padding: 0;
  text-align: left;
}

.about .features li {
  margin-bottom: 10px;
}

/* Services Section */
.services {
  background-color: #f1f1f1;
  padding: 60px 0;
}

.service-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.service-card {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  width: 45%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  margin-bottom: 15px;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card ul li {
  margin-bottom: 10px;
}

/* Contact Form Section */
.contact {
  padding: 60px 0;
  background-color: white;
}

form input, form select, form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

form button {
  background-color: #007BFF;
  color: white;
  padding: 12px 30px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #0056b3;
}

.message {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.success {
  background-color: #28a745;
  color: white;
}

.error {
  background-color: #dc3545;
  color: white;
}

/* Footer Section */
footer {
  background-color: #333;
  color: white;
  padding: 20px 0;
  text-align: center;
}

footer a {
  text-decoration: none;
  color: white;
  margin: 0 10px;
}

footer a:hover {
  color: #ff6f61;
}
