/* AVVOCÀ - ABOUT PAGE STYLES */

.about-container {
  min-height: 100vh;
  background-color: #f8f9fa;
}

/* About Hero Section */
.about-container .hero {
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 50%, #667eea 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.about-container .hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.about-container .hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* About Content */
.about-content {
  padding: 4rem 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.about-text {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.about-text h2 {
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  font-weight: 600;
}

.about-text p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* Lawyer Profile */
.lawyer-profile {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
  height: fit-content;
}

.lawyer-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 50%, #667eea 100%);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
}

.lawyer-profile h3 {
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.lawyer-role {
  color: #667eea;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.lawyer-bio {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Values Section */
.values-section {
  padding: 4rem 0;
  background: white;
}

.values-section h2 {
  text-align: center;
  color: #333;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  font-weight: 600;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: #2a3f6c;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 50%, #2a3f6c 100%)!important; 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.value-card h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.value-card p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* Stats Section */
.stats-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 50%, #667eea 100%);
  color: white;
}

.stats-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  font-weight: 600;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Experience Section */
.experience-section {
  padding: 4rem 0;
  background: white;
}

.experience-section h2 {
  text-align: center;
  color: #333;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  font-weight: 600;
}

.experience-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 16px;
  border-left: 4px solid #667eea;
}

.timeline-year {
  font-size: 1.5rem;
  font-weight: bold;
  color: #667eea;
  min-width: 80px;
}

.timeline-content h3 {
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.timeline-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background: #f8f9fa;
  text-align: center;
}

.cta-card {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 0 auto;
}

.cta-card h2 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.cta-card p {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-container .hero h1 {
    font-size: 2.5rem;
  }
  
  .about-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-text,
  .lawyer-profile {
    padding: 2rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .timeline-item {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .timeline-year {
    min-width: auto;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
