/* About & Team Styles */
.about-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

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

.team-card {
    background: var(--bg-soft);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

/* Contact Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-details {
    margin-top: 30px;
    font-size: 1.1rem;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    resize: none;
}

/* Dashboard & Insights Styles */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.stat-card h3 {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.manage-events table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.manage-events th, .manage-events td {
    text-align: left;
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
}

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

.chart-container {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.chart-container h3 {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }
}
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
/* ================================================= */
/* FORCE-STYLED NEWSLETTER (OVERRIDE SAFE) */
/* ================================================= */

.newsletter-section {
  width: 100%;
  padding: 120px 20px;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  display: flex;
  justify-content: center;
}

.newsletter-wrapper {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
}

.newsletter-card {
  width: 100%;
  max-width: 520px;
  background: white;
  padding: 48px 42px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
}

.newsletter-card h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1e3a8a;
}

.newsletter-card .subtitle {
  margin-top: 14px;
  margin-bottom: 32px;
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 18px;
  border-radius: 14px;
  border: 1px solid #cbd5f5;
  font-size: 15px;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

.newsletter-form button {
  padding: 15px 28px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(59,130,246,0.35);
}

.form-note {
  margin-top: 20px;
  font-size: 13px;
  color: #64748b;
}

/* MOBILE */
@media (max-width: 600px) {
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }
}
