/* Hero Section */
.about-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.subtitle {
  color: #64748b;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.contact-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: #4c51bf; /* Rebel Purple/Blue */
}

.contact-card .icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.2rem;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.contact-card p, .contact-card a {
  color: #4a5568;
  text-decoration: none;
  font-weight: 500;
}

.social-links {
  font-size: 0.9rem;
  color: #718096;
}
.contact-form-section {
  margin-top: 4rem;
  background: #ffffff;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.contact-form-section h2 {
  text-align: center;
  color: #2d3748;
  margin-bottom: 2rem;
}

.rebel-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #4a5568;
}

.form-group input, 
.form-group select, 
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #cbd5e0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: #4c51bf; /* Rebel Accent Color */
  box-shadow: 0 0 0 3px rgba(76, 81, 191, 0.1);
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background-color: #4c51bf;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background-color: #3c366b;
}

/* Mobile responsive padding adjustments */
@media (max-width: 600px) {
  .contact-form-section {
    padding: 1.5rem;
  }
}
