/* About Me Section Styles */
#about-me {
  padding: 8rem 4rem 6rem 4rem;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}



.about-me-header {
  text-align: center;
  margin-bottom: 2rem;
}

.about-me-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #000000 !important;
  margin-bottom: 1rem;
  font-family: 'Quicksand', sans-serif;
}

.about-me-header p {
  font-size: 1.1rem;
  color: #000000 !important;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-me-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.about-paragraph {
  margin-bottom: 2.5rem;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #000000 !important;
}

.about-paragraph p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #000000 !important;
  margin: 0;
  text-align: left;
}

.about-paragraph strong {
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
  #about-me {
    padding: 8rem 1rem 2rem 1rem;
  }
  
  .about-me-header h2 {
    font-size: 2rem;
  }
  
  .about-me-header p {
    font-size: 1rem;
  }
  
  .about-paragraph p {
    font-size: 1rem;
    line-height: 1.7;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .about-me-header h2 {
    font-size: 1.8rem;
  }
  
  .about-paragraph p {
    font-size: 0.95rem;
  }
} 