.fixed-top {
  box-shadow: 0 3px 14px 0 rgba(44, 35, 110, 0.387), 0 5px 5.5px 0 rgba(0, 0, 0, 0.12);
}

body {
  padding-top: 50px;
}

.nav-color{
  background-color:#8b3d44;
}

.about-page {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: sans-serif;
  color: #333;
}

.about-section {
  margin-bottom: 50px;
}

.about-section h1,
.about-section h2 {
  color: #8b3d44;
  margin-bottom: 15px;
}

/* About Author Section */
.about-author {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.author-photo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 3px 10px #8b3d44;
  flex-shrink: 0;
}

.author-text {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.6;
}

.author-text a {
  color: #8b3d44;
  text-decoration: underline;
}

.author-text a:hover,
.author-text a:focus {
  color: #8b3d44;
  outline: none;
}

/* Responsive adjustments */
@media (max-width: 700px) {
  .about-author {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author-photo {
    width: 140px;
    height: 140px;
  }

  .author-text {
    font-size: 1rem;
  }
}
