/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

/* Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
header {
  background-color: #BBF1F7	;
  color: #2C2C2C	;
  padding: 20px 0;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
  background-color: #e9f2ff;
  padding: 60px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 2.2rem;
  color: #333;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #666;
}

/* Feature Cards */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 40px 0;
}

.card {
  background-color: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, box-shadow 0.3s;
  cursor: pointer;
  text-align: left;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #2d6cdf;
}

.card p {
  color: #555;
}

/* Footer */
footer {
  background-color: #BBF1F7;
  color: #2C2C2C	;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 600px) {
  .hero h2 {
    font-size: 1.7rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .card {
    padding: 20px;
  }
}

.comingsoon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px; /* Adjust as needed */
  background-color: #BBF1F7;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.comingsoon:hover {
  transform: scale(1.03);
}