/* Support Page Styles */
.support-hero {
  background-color: #114478;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.support-breadcrumbs {
  background-color: #f1f1f1;
  padding: 15px 0;
}

.support-main {
  padding: 60px 0;
}

/* Quick Help Section */
.quick-help {
  margin-bottom: 60px;
}

.help-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.help-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.help-card:hover {
  transform: translateY(-5px);
}

.help-icon {
  font-size: 2.5rem;
  color: #3498db;
  margin-bottom: 20px;
}

.help-card h3 {
  margin-bottom: 15px;
  color: #2c3e50;
}

.help-card p {
  color: #7f8c8d;
  margin-bottom: 20px;
}

/* Contact Options */
.contact-options {
  margin-bottom: 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.contact-method {
  display: flex;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  align-items: center;
}

.contact-icon {
  font-size: 1.8rem;
  color: #3498db;
  margin-right: 20px;
  min-width: 50px;
  text-align: center;
}

.contact-details h3 {
  margin-bottom: 5px;
  color: #2c3e50;
}

.contact-number {
  font-size: 1.2rem;
  font-weight: 600;
  color: #3498db;
  margin-bottom: 5px;
}

.contact-hours,
.contact-note,
.contact-availability {
  color: #7f8c8d;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

/* Popular Topics */
.popular-topics {
  margin-bottom: 60px;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.topic-card {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 20px;
  color: #2c3e50;
  transition: all 0.3s ease;
}

.topic-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  color: #3498db;
}

.topic-card i:first-child {
  font-size: 1.5rem;
  margin-right: 15px;
  color: #3498db;
}

.topic-card span {
  flex-grow: 1;
  font-weight: 500;
}

.topic-card i:last-child {
  color: #bdc3c7;
}

/* Emergency Alert */
.emergency-alert {
  background: #fff8e1;
  border-left: 5px solid #ffc107;
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 40px;
}

.alert-content {
  display: flex;
  align-items: center;
}

.alert-icon {
  font-size: 2rem;
  color: #ffc107;
  margin-right: 20px;
}

.alert-text h3 {
  color: #e65100;
  margin-bottom: 5px;
}

.alert-text p {
  color: #5d4037;
  margin-bottom: 0;
}

.alert-text a {
  color: #e65100;
  font-weight: 500;
}
