
.navbar{
  background-color: transparent;
  box-shadow: 0 3px 10px rgba(0,0, 0, 0.15);
  width: 100%;
  z-index: 5;
  border-radius: var(--border-radius-m);
}
.navbar .dropdown{
background-color: white;
box-shadow: 0 3px 10px rgba(0,0, 0, 0.15);
width: 100%;
z-index: 5;
border-radius: var(--border-radius-m);
}

.about-section{
    background-color: white;
}

      /* Footer section styling */
      .footer-section-news {
        padding: 20px 0;
        background: var(--dark-color);
        position: absolute;
        bottom: -100px;
        width: 100%;
      }
      
      .footer-section-news .section-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      
      .footer-section-news :where(.copyright-text, .social-link, .policy-link) {
        color: var(--white-color);
        transition: 0.2s ease;
      }
      
      .footer-section-news .social-link-list {
        display: flex;
        gap: 25px;
      }
      
      .footer-section-news .social-link-list .social-link {
        font-size: var(--font-size-l);
      }
      
      .footer-section-news .social-link-list .social-link:hover,
      .footer-section-news .policy-text .policy-link:hover {
        color: green;
      }
      
      .footer-section-news .policy-text .separator {
        color: #fff;
        margin: 0 5px;
      }
       
      /* Responsive media query code for max width 900px */
@media screen and (max-width: 900px) { 
  
  .footer-section {
    flex-direction: column;
    gap: 20px;
    position: relative;
  
  }
   }