/* Inherits base styles from styles.css */

.about-main-content {
  padding-top: 120px;
  padding-bottom: 4rem;
}

.about-wrapper {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2.5rem;
  background: rgba(15, 15, 35, 0.9);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(77, 208, 225, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.about-header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-header h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.about-header .subtitle {
  font-size: 1.2rem;
  color: #b0b0b0;
}

.content-section {
  margin-bottom: 3rem;
}

.content-section h2 {
  font-size: 1.8rem;
  color: #4dd0e1;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(77, 208, 225, 0.2);
}

.content-section p {
  line-height: 1.8;
  color: #e0e0e0;
}

/* Philosophy Section */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.philosophy-card {
  background: rgba(10, 10, 20, 0.5);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(77, 208, 225, 0.1);
}

.philosophy-card i {
  font-size: 2.5rem;
  color: #81c784;
  margin-bottom: 1rem;
}

.philosophy-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.philosophy-card p {
  font-size: 0.95rem;
  color: #b0b0b0;
  line-height: 1.6;
}

/* Support Section */
.support-section {
  text-align: center;
  background: rgba(10, 10, 20, 0.5);
  padding: 2.5rem;
  border-radius: 15px;
}

.support-section h2 {
  border-bottom: none;
  margin-bottom: 1rem;
}

.bmac-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background-color: #ffdd00;
  color: #000000;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
  border: 2px solid #ffdd00;
}

.bmac-button:hover {
  background-color: transparent;
  color: #ffdd00;
  transform: scale(1.05);
}

.bmac-button img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
