/* Base */
body {
  background: var(--gray-bg);
  color: var(--black-text);
  margin: 0;
  font-family: Arial, sans-serif;
}
/* Hero Section */
.hero {
  max-width: 1100px;
  margin: auto;
  text-align: center;
  padding: 80px 16px;
}

.hero-title {
  font-size: 38px;
  font-weight: bold;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--gray-text);
  margin: 12px 0 28px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn-primary {
  background: #0066cc;
  color: white;
  padding: 12px 28px;
  border-radius: 12px;
  text-decoration: none;
}

.btn-primary:hover {
  background: #0053aa;
}

.btn-secondary {
  background: #e0e0e0;
  padding: 12px 28px;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
}

.btn-secondary:hover {
  background: #cccccc;
}

/* Sections */
.section {
  padding: 60px 0;
  background: var(--white-bg); /* background: white; */
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 16px;
}

.section-title {
  color: var(--black-text);
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 28px;
}

/* Grid Cards */
.grid {
  max-width: 1000px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--gray-bg);
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  font-size: 17px;
  color: var(--gray-text);
  text-align: center;
  transition: all 0.2s ease;
}
.card a {
  text-decoration: none;
  color: var(--gray-text);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  border-color: #cdddee;
}

 #devNotification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ffcc00; /* Yellow background */
    color: #333; /* Dark text */
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    font-family: Arial, sans-serif;
    font-weight: bold;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 9999;
  }

@media (max-width: 1024px) {
  .hero-title {
    font-size: 32px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .btn-primary,
  .btn-secondary {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }
  .hero-subtitle {
    font-size: 15px;
  }

  .card {
    font-size: 15px;
    padding: 16px;
  }
}
