body {
  font-family: 'Rubik', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
}

header {
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 120px 20px 80px;
  position: relative;
}

header::after {
  content: '';
  background: rgba(0,0,0,0.5);
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
}

header h1, header p {
  position: relative;
  z-index: 1;
}

header h1 {
  font-size: 3.5em;
  margin: 0;
}

header p {
  font-size: 1.5em;
  margin-top: 15px;
}

section {
  padding: 50px 20px;
  max-width: 1100px;
  margin: auto;
}

.intro {
  text-align: center;
  margin-bottom: 50px;
}

.intro h2 {
  font-size: 2.2em;
  color: #0072ff;
}

.intro p {
  font-size: 1.2em;
  line-height: 1.8;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.service {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 30px 20px;
  margin: 15px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s;
}

.service:hover {
  transform: translateY(-5px);
}

.material-icons {
  font-size: 40px;
  color: #0072ff;
  margin-bottom: 15px;
}

.service h3 {
  color: #0072ff;
  font-size: 1.5em;
}

form {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: auto;
}

input, textarea {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
}

button {
  background-color: #0072ff;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1em;
}

button:hover {
  background-color: #005bb5;
}

footer {
  text-align: center;
  padding: 25px;
  background: #0072ff;
  color: white;
  margin-top: 50px;
}

@media (max-width: 768px) {
  .services {
    flex-direction: column;
    align-items: center;
  }
}
