body {
  font-family: 'Epilogue', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1 {
  font-size: 35px;
  text-align: center;
  padding-bottom: 20px;
  padding-top: 20px;
  font-weight: 400;
  line-height: 45px;
}

h2 {
  font-size: 30px;
  font-weight: 400;
  text-align: left;
  padding-top: 25px;
  padding-bottom: 15px;
  line-height: 40px;
  color: #0ea5e9;
}

h3 {
  font-size: 25px;
  font-weight: 400;
  text-align: left;
  padding-top: 25px;
  padding-bottom: 15px;
}

h4 {
  font-size: 20px;
  font-weight: 400;
  text-align: left;
  padding-top: 25px;
  padding-bottom: 15px;
}

.content a {
  font-weight: bold;
  color: #0ea5e9;
}

.content a:hover {
  font-weight: bold;
  color: rgb(0, 0, 1);
}

.content ol {
  padding-left: 20px;
  padding-top: 10px;
}

.content ul {
  list-style-type: disc;
  padding-left: 20px;
  padding-top: 10px;
}

.content p {
  padding-top: 10px;
}


/* Main Layout */
.main-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 10px;
  background-color: #ffffff;
  flex-direction: row; /* default for desktop */
}

/* Content */
.content {
  flex: 3 1 600px;
  padding: 15px;
  background-color: #ffffff;
  box-sizing: border-box;
  min-width: 0;
}

/* Mobile view adjustments */
@media (max-width: 768px) {
  .main-layout {
    flex-direction: column;
    align-items: stretch; 
  }

  .content,
  .sidebar {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex: none; 
    
  }

  .sidebar {
    margin-top: 20px; 
    position: static;
  }
}

/* Author Page */

.authors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

.author-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 200px;
  max-width: 250px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  background-color: #fff;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.author-img:hover {
  transform: translateY(-5px);
}

.author-img img {
  border-radius: 10%;
  object-fit: cover;
  width: 200px;
  height: 200px;
  margin-bottom: 1rem;
}

.author-img p {
  font-size: 1rem;
  color: #333;
  margin: 0;
}

.author-img a {
  color: #0077cc;
  text-decoration: none;
  font-weight: bold;
}

.author-img a:hover {
  text-decoration: underline;
}

/* Responsive tweaks */
@media screen and (max-width: 768px) {
  .authors {
    gap: 1.5rem;
    padding: 1rem;
  }

  .author-img {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .author-img img {
    width: 150px;
    height: 150px;
  }
}

@media screen and (max-width: 480px) {
  .author-img img {
    width: 150px;
    height: 150px;
  }

  .author-img p {
    font-size: 0.95rem;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .main-layout {
    flex-direction: column;
  }
}

/* Contact Us Page */

