body{
    height: 100vh;
    margin: 0;
    background-size: cover;
  background-position: center;  
  background-repeat: no-repeat;
  overflow: hidden;
    background-image: url(src/index.jpg)
}

    h1 {
  margin-top: 20px;
  text-align: center;
  color:rgb(9, 92, 45);
  font-size: 75px;
  font-family: 'Times New Roman', Times, serif;
  margin-bottom: 10px;
}

p {
  text-align: center;
  font-style: italic;
  font-size: 30px;
  margin-top: 0px;
  color: #000000ac;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



/* Container */
.container {
  position: absolute;
  display: flex;
  gap: 30px;
  top:50%;
  left:20%;
  translate: -50%,-50%;
}

/* Card */
.card {
  background: white;
  border-radius: 15px;
  padding: 30px 25px;
  width: 280px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}

/* Icon */
.icon {
  font-size: 40px;
  color: green;
  margin-bottom: 15px;
  background: #eaf7ea;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px auto;
}

/* Title & Text */
.card h2 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

.card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* Buttons */
.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.btn.green {
  background: #1e7d32;
  color: white;
}

.btn.green:hover {
  background: #145823;
}

.btn.light {
  background: #f8f8f8;
  color: #333;
  border: 1px solid #ddd;
}

.btn.light:hover {
  background: #e2e2e2;
}

.btn.beige {
  background: #e9e4d9;
  color: #333;
}

.btn.beige:hover {
  background: #d6d2c6;
}
