/* -----------------------------------------------------------
   GLOBAL LINK + RESET
----------------------------------------------------------- */
a {
  text-decoration: none;
}

/* Allow body text to show normal website colors */
body {
  color: #1f2937; /* Tailwind gray-800 */
}

/* -----------------------------------------------------------
   CTA BUTTON (Reusable)
----------------------------------------------------------- */
.cta-btn {
  background-color: #0EA5A3;      /* Teal */
  color: white !important;        /* Override global a color */
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-block;
  font-size: 1rem;
  transition: background-color 0.2s ease;
}

.cta-btn:hover {
  background-color: #0C8C8B;
}

/* -----------------------------------------------------------
   DROPDOWN MENU STYLES (for Industry Usage menu)
----------------------------------------------------------- */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 200px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 20;
}

.dropdown-content a {
  color: #333 !important;
  padding: 10px 16px;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* -----------------------------------------------------------
   SECTION SPACING
----------------------------------------------------------- */
.section {
  padding: 60px 0;
}

/* -----------------------------------------------------------
   HEADINGS
----------------------------------------------------------- */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
