/* Mobile specific styles for smaller devices */
@media only screen and (max-width: 767px) {
  /* Header */
  .navbar-brand img {
    max-width: 180px;
  }
  
  /* Navigation */
  .nav-btns {
    margin-top: 15px;
    width: 100%;
    justify-content: center !important;
  }
  
  .navbar-light .navbar-toggler {
    border: none;
    padding: 0;
  }
  
  /* Banner sections */
  .banner-main-con {
    padding: 50px 0;
    background-size: 200px;
    text-align: center;
  }
  
  .sub-banner-main-con {
    padding: 40px 0;
    height: auto;
    text-align: center;
  }
  
  .sub-banner-main-con h1 {
    font-size: 32px;
  }
  
  /* Footer */
  footer {
    text-align: center;
  }
  
  footer .text-md-start {
    text-align: center !important;
  }
  
  footer .footer-links, 
  footer .footer-contact {
    margin-bottom: 30px;
  }
  
  /* General text sizing */
  h1 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  
  h2 {
    font-size: 26px;
    margin-bottom: 15px;
  }
  
  h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  /* Buttons and CTAs */
  .btn {
    padding: 8px 20px;
  }
  
  /* Section spacing */
  .section-padding {
    padding: 50px 0;
  }
}

/* Extra small devices */
@media only screen and (max-width: 575px) {
  /* Header */
  .navbar-brand img {
    max-width: 160px;
  }
  
  /* Banner sections */
  .banner-main-con {
    padding: 40px 0;
    background-image: none;
  }
  
  .sub-banner-main-con {
    padding: 30px 0;
  }
  
  .sub-banner-main-con h1 {
    font-size: 26px;
  }
  
  /* Typography */
  h1 {
    font-size: 26px;
    margin-bottom: 15px;
  }
  
  h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  p {
    font-size: 15px;
    line-height: 1.6;
  }
  
  /* Buttons */
  .btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 8px 15px;
  }
  
  /* Footer */
  footer {
    padding: 40px 0 !important;
  }
  
  footer .footer-heading {
    margin-top: 20px;
    margin-bottom: 15px;
  }
  
  /* Fix social media icons on mobile */
  footer .social-icons {
    justify-content: center !important;
    margin-bottom: 20px;
  }
}