

/* Main Content */
.main-content {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.subtext {
  color: #555;
  margin: 10px 0 30px;
}

.registry-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.option-box {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  text-align: center;
}

.option-box img {
  width: 60%;
  margin-bottom: 15px;
}

.option-box h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.option-box p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  background: #ffa41c;
  color: black;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  border: none;
  cursor: pointer;
}


.search-section {
  margin: 40px 0;
  text-align: center;
}

.search-registry-input {
  padding: 10px;
  width: 60%;
  max-width: 400px;
  margin: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.info-section {
  background: #fff;
  margin-top: 40px;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

.info-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 20px;
}

.info-grid div {
  width: 250px;
  margin: 10px;
  text-align: center;
}

.info-grid h4 {
  font-size: 16px;
  margin-bottom: 5px;
}





/* Responsive */
@media (max-width: 600px) {
  .search-box {
    width: 100%;
    margin-top: 10px;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-registry-input {
    width: 90%;
  }

  .info-grid {
    flex-direction: column;
    align-items: center;
  }
}
