.btn-christmas {
    background-color: #ffcf06; /* Red background */
    color: rgb(0, 0, 0); /* White text */
    padding: 10px 20px; /* Spacing around the text */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    font-family: Arial, Helvetica, sans-serif; /* Font similar to what's used */
    font-size: 16px; /* Adjust as needed */
    text-align: center; /* Center the text */
    cursor: pointer; /* Change cursor to pointer on hover */
    text-decoration: none; /* Remove any text underline */
}

.btn-christmas:hover {
    background-color: #ffcf06; /* Darker red on hover */
    color: #ffffff;
}




.btnChristmas-2{
    background-color: #ffffff; /* Red background */
    color: #E5533A; /* White text */
    padding: 10px 20px; /* Spacing around the text */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    font-family: Arial, Helvetica, sans-serif; /* Font similar to what's used */
    font-size: 16px; /* Adjust as needed */
    text-align: center; /* Center the text */
    cursor: pointer; /* Change cursor to pointer on hover */
    text-decoration: none; /* Remove any text underline */
}

.btnChristmas-2:hover {
    background-color: #ffe1db; /* Darker red on hover */
}





.testimonial-card {
  display: flex;
  flex-direction: column;
}

.testimonial-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}


.seed-perspective-section {
  background-color: #fdf6dc;
  padding: 120px 24px;
}

.seed-perspective-row {
  row-gap: 40px;
}

.seed-perspective-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
}

.seed-perspective-content {
  max-width: 620px;
}

.seed-perspective-content h2 {
  color: #000;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.15;
  margin: 0 0 24px;
  font-weight: 900;
}

.seed-perspective-content p {
  color: #000;
  text-align: left;
  font-size: 20px;
  line-height: 1.6;
  margin: 0 0 24px;
}

.seed-perspective-btn {
  background-color: #f2c20f;
  color: #111126;
  border: none;
  border-radius: 10px;
  padding: 18px 24px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 1px;
  width: 100%;
  max-width: 500px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
}

.seed-perspective-btn:hover {
  color: #111126;
  text-decoration: none;
}

/* Mobile */
@media (max-width: 767px) {
  .seed-perspective-section {
    padding: 56px 18px;
  }

  .seed-perspective-image img {
    height: auto;
    max-height: 420px;
  }

  .seed-perspective-content h2 {
    font-size: 2rem;
  }

  .seed-perspective-content p {
    font-size: 16px;
    line-height: 1.6;
  }

  .seed-perspective-btn {
    font-size: 16px;
    padding: 16px 18px;
  }
}