body {
  font-family: 'Cairo', 'Poppins', sans-serif;
  background: linear-gradient(to bottom, #f2f2f2, #e0e0e0);
  margin: 0;
  padding: 0;
  color: #333;
}

header {
  text-align: center;
  padding: 50px 20px;
  background-color: #222;
  color: #fff;
}

header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

header p {
  font-size: 18px;
}

section {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
}

.services h2, .gallery h2, .contact h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 28px;
}

.services ul {
  list-style-type: square;
  padding-right: 20px;
  font-size: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, button {
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

button {
  background-color: #007bff;
  color: white;
  cursor: pointer;
  border: none;
}

button:hover {
  background-color: #0056b3;
}

.contact-info {
  text-align: center;
  margin-top: 20px;
}

.contact-info a {
  margin: 0 10px;
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #222;
  color: #fff;
  font-size: 14px;
}

@media (max-width: 600px) {
  header h1 {
    font-size: 28px;
  }
}
