/* About Page Styles */

.about-container {
  padding: 2rem 0;
}

/* Profile Section */
.profile-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.profile-image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.5rem;
  border: 4px solid white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.profile-section h2 {
  color: #333;
  font-weight: 300;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.profile-title {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  font-style: italic;
}

.profile-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.profile-links .btn {
  background-color: #667eea;
  color: white;
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  text-transform: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.profile-links .btn:hover {
  background-color: #5a6fd8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* About Content */
.about-content {
  margin-bottom: 3rem;
}

.about-content h3 {
  color: #333;
  font-weight: 400;
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-size: 1.5rem;
  border-bottom: 2px solid #667eea;
  padding-bottom: 0.5rem;
}

.about-content h3:first-child {
  margin-top: 0;
}

.about-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid #667eea;
}

.contact-section h3 {
  color: #333;
  font-weight: 400;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.contact-info p {
  color: #555;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.contact-info i {
  color: #667eea;
  margin-right: 1rem;
  width: 20px;
  text-align: center;
}

.contact-info a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #5a6fd8;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .profile-section {
    padding: 1.5rem;
  }
  
  .profile-image {
    width: 150px;
    height: 150px;
  }
  
  .profile-section h2 {
    font-size: 2rem;
  }
  
  .profile-links {
    flex-direction: column;
    align-items: center;
  }
  
  .profile-links .btn {
    width: 200px;
  }
  
  .about-content p {
    font-size: 1rem;
  }
  
  .contact-info p {
    font-size: 1rem;
  }
}