/* About Page Styles */

/* Hero Section */
.about-hero {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
}

.about-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.about-hero p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* About Info Section */
.about-info {
  padding: 60px 0;
  background-color: #ffffff;
}

.about-text {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #666;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.about-title, .values-title {
  display: inline-block;
  padding-bottom: 15px;
  border-bottom: 3px solid #007bff;
  margin: 0 auto;
}

/* Card Grid Layouts */
.about-content-grid, .values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Card Styling */
.about-card, .value-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover, .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.about-card-icon, .value-card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  background-color: #f0f7ff;
  border-radius: 50%;
  margin-bottom: 20px;
}

.about-card-icon i, .value-card-icon i {
  font-size: 28px;
  color: #007bff;
}

.about-card-content, .value-card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 0 15px;
}

.about-card-content h3, .value-card-content h3 {
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
}

.about-card-content p, .value-card-content p {
  color: #666;
  line-height: 1.6;
}

/* Values Section */
.values-section {
  padding: 60px 0;
  background-color: #ffffff;
}

/* CTA Section */
.cta-section {
  background-color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 20px;
  color: #333;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 30px;
  color: #666;
}

.btn-primary {
  background-color: #007bff;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  font-weight: 500;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #0069d9;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-content-grid, .values-grid {
    grid-template-columns: 1fr;
  }
  
  .about-hero h1 {
    font-size: 2rem;
  }

  .about-text {
    padding: 20px;
  }
} 