/* About Page Styles */

main {
  margin-top: 0;
  padding-top: 70px;
}

.main-content.page {
  background-color: white;
  color: #2c3e50;
  min-height: calc(100vh - 200px);
}

.about-page {
  background-color: white;
  padding: 60px 20px;
  color: #2c3e50;
  min-height: calc(100vh - 200px);
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  font-family: 'Times New Roman', serif;
}

.about-content {
  flex: 1;
  color: #2c3e50;
}

.about-content h1 {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 25px;
  font-weight: 600;
}

.about-content h2 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.about-content p {
  color: #34495e;
  margin-bottom: 15px;
  line-height: 1.8;
  font-size: 1rem;
}

.about-content a {
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
}

.about-content a:hover {
  text-decoration: underline;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-section {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #ddd;
}

.contact-section h2 {
  color: #2c3e50;
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.contact-section p {
  color: #34495e;
  margin-bottom: 15px;
}

.contact-section a {
  background-color: #3498db;
  color: white;
  padding: 10px 25px;
  text-decoration: none;
  display: inline-block;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.contact-section a:hover {
  background-color: #2980b9;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  main {
    margin-top: 70px;
  }

  .about-page,
  .main-content.page {
    padding: 40px 20px;
  }

  .about-container {
    flex-direction: column;
    gap: 30px;
  }

  .about-content h1 {
    font-size: 1.5rem;
  }

  .about-content h2 {
    font-size: 1.1rem;
  }

  .about-content p {
    font-size: 0.9rem;
  }

  .about-image {
    max-width: 100%;
  }

  .about-image img {
    max-width: 100%;
  }
}
