body {
  font-family: 'Inter', sans-serif;
  background: #f7f9fa;
  color: #222;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

a {
  color: #009AD5;
  text-decoration: none;
}

.hero {
  background: url('screen_dreams.jpg') center/cover no-repeat;
  color: white;
  padding: 4rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* dark overlay for contrast */
  z-index: 0;
}

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

.container {
  max-width: 1000px;
  margin: auto;
  padding: 2rem 1rem;
}

section {
  margin: 3rem 0;
  text-align: center;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: center;
  width: 250px;
}

.card i {
  color: #009AD5;
  margin-bottom: 0.5rem;
}

.card h3 {
  margin-top: 0.5rem;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.card ul li {
  margin: 0.3rem 0;
}

form {
  background: white;
  max-width: 500px;
  margin: 2rem auto 0;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

input, textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
}

button {
  background: #009AD5;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.phone {
  font-size: 1.1rem;
  margin-top: 2rem;
}

#phone {
  background: #ddd;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 1px;
}

footer {
  background: #f1f1f1;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
}
