
.journal_index .site_logo {
    width: 100% !important;
}

.journal_index .site_logo img {
    width: 100% !important;
    height: auto;
}


  .journal-info {
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
  }

  /* Styling for each info item */
  .info-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #333; /* Darker border for a more sleek look */
  }

  .info-item:last-child {
    border-bottom: none; /* Remove border from the last item */
  }

  /* Styling for strong labels */
  .info-item strong {
    font-weight: 500;
    color: #ff7518; /* Teal accent for labels */
    letter-spacing: 0.5px;
  }

  /* Styling for the information text */
  .info-item span {
    font-weight: 300;
    color: #e0e0e0; /* Light grey color for content */
  }

  /* Styling for links */
  .info-item a {
    color: #00bcd4; /* Matching link color to labels */
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .info-item a:hover {
    color: #ff7518;
  }

  /* Add smooth transition effects for better UI */
  .info-item:hover {
    background-color: rgba(0, 188, 212, 0.1); /* Light teal hover background */
    transform: translateX(4px); /* Subtle hover effect to give it a floating feel */
    transition: transform 0.2s ease, background-color 0.3s ease;
  }


.menu a {
  display: block;
  padding: 12px;
  color: black; /* Light text color */
  text-decoration: none;
  border-bottom: 1px solid #34495e; /* Subtle separator */
  transition: background-color 0.3s, color 0.3s; /* Smooth transition on hover */
}

.menu a:last-child {
  border-bottom: none; /* Remove border from last item */
}

/* Icon styling */
.menu a em {
  margin-right: 10px;
  font-size: 1.3rem;
}

/* Hover effect for links */
.menu a:hover {
  background-color: color(srgb 1 0.46 0.09); /* Blue background on hover */
  color: white; /* Change text color on hover */
  padding-left: 15px; /* Add some padding for a "push" effect */
}

/* Responsive design */
@media (max-width: 600px) {
  .menu {
    width: 90%;
    padding: 10px;
  }


  .menu a {
    padding: 10px;
  }
}

/* General footer styling */
.footer {
  background-color: #4b4b4b;
  padding: 40px 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  min-width: 300px;
  text-align: left;
  margin-bottom: 20px;
}

.footer-section h4 {
  color: #00bcd4; /* Teal accent for headings */
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.footer-section address {
  font-size: 0.95rem;
  color: #dcdcdc;
}

.map-container iframe {
  border-radius: 8px;
}

.copyright-wrapper {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #333;
}

.copyright-wrapper p {
  font-size: 0.85rem;
  color: #dcdcdc;
  margin: 5px 0;
}

.copyright-wrapper a {
  color: #00bcd4;
  text-decoration: none;
  transition: color 0.3s;
}

.copyright-wrapper a:hover {
  color: #ff4081; /* Pink hover effect for a futuristic look */
}

.copyright-wrapper img {
  vertical-align: middle;
  margin-left: 10px;
  max-height: 25px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-section {
    text-align: center;
    min-width: 100%;
  }
}


#footer > div > div:nth-child(3) {
    display: none !important;
}