/* General Styles */
html{
  scroll-behavior: smooth; /* Enables smooth scrolling */
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
}

h1, h2, h3 {
  text-align: center;
  margin-bottom: 1rem;
}

.section {
  padding: 2rem 1rem;
  text-align: center;
}

.cta-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #007BFF;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 1rem;
}

.cta-btn:hover {
  background-color: #0056b3;
}

/* Services List */
.services-list {
  list-style: none;
  padding: 0;
}

.services-list li {
  margin: 0.5rem 0;
}

/* Project Cards */
.projects {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.project-card {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 1rem;
  max-width: 300px;
  text-align: center;
}

.project-card img {
  max-width: 100%;
  border-radius: 5px;
}

/* Pricing Cards */
.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.price-card {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 1rem;
  max-width: 300px;
  text-align: center;
}

header {
  background: #333;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

section {
  padding: 40px 20px;
}

form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

form input, form textarea {
  padding: 10px;
  margin-bottom: 10px;
}

form button {
  background: #333;
  color: white;
  padding: 10px;
  border: none;
}

footer {
  text-align: center;
  padding: 20px;
  background: #f4f4f4;
}
