
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f1fff1;
    margin: 0;
    padding: 20px;
    color: #222;
}
h1 {
    text-align: center;
    color: #007f00;
}
p {
    text-align: center;
}
.service-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}
.service-card {
    width: 250px;
    text-align: center;
    border: 3px solid #007f00;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    background-color: #ffffff;
    transition: transform 0.2s ease-in-out;
}
.service-card:hover {
    transform: scale(1.05);
}
.service-card img {
    width: 120px;
    height: auto;
}
.service-card h2 {
    margin-top: 10px;
    color: #007f00;
}
.button-container {
    text-align: center;
    margin-top: 30px;
}
.subscribe-button {
    display: inline-block;
    margin: 12px;
    padding: 14px 22px;
    font-size: 16px;
    background-color: #00aa00;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s;
}
.subscribe-button:hover {
    background-color: #007f00;
}

.green-button {
  background-color: #228B22;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}
.button {
  background-color: #2e7d32;
  color: white;
  padding: 8px 16px;
  font-size: 14px;
  height: 42px;
  min-width: 140px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 5px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.button:hover {
  background-color: #1b5e20;
}

.green-button:hover {
  background-color: #1e7e1e;
}
