/* Gradient background */
body {
  margin: 0;
  height: 100vh;
  background: linear-gradient(to bottom, #f0f0f0, #888888, #000000);
  font-family: 'Montserrat', sans-serif;
  color: #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
/* Container for content */
.container {
  max-width: 600px;
  background: rgba(0,0,0,0.5);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
}
/* Title */
h1 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffdddd;
  text-shadow: 0 0 10px #900000;
}
/* Paragraph styling */
p {
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 10px 0;
  color: #ddd;
}
/* Top image styling with grayscale filter */
.top-image {
  width: 100%;
  max-width: 400px;
  margin-bottom: 30px;
  filter: grayscale(100%);
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255,255,255,0.3);
  object-fit: contain;
}
/* Link styling */
a {
  color: #ffaaaa;
  text-decoration: none;
  font-weight: 600;
}
a:hover {
  text-decoration: underline;
}
/* Tiny service icons with full colour */
.service-icon {
  width: 40px;
  height: 40px;
  filter: none;
  margin-bottom: 10px;
  font-size: 40px; /* for Font Awesome */
  color: #ffaaaa;
}

.container a {
  display: inline-block;
  margin: 20px;
  text-align: center;
}

.container a p {
  margin-top: 5px;
}
