/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', 'Segoe UI', sans-serif;
  }

  body {
    background-color: #f9fbfd;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
  }

  a {
    text-decoration: none;
    color: #2F586A;
    transition: color 0.3s ease;
  }

  a:hover {
    color: #1a3a49;
  }

  /* Improved Header Styles */
  #header {
    background-color: #2F586A;
    background-image: linear-gradient(135deg, #2F586A, #1a3a49);
    padding: 3% 3%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
  }

  /* Logo and Company Name */
  #header-logo-name {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
  }

  #header-logo-name:hover {
    transform: translateY(-2px);
  }

  #logo {
    height: 50px;
    width: 50px;
    border-radius: 12px;
    object-fit: cover;
    /* box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2); */
  }

  #company-name {
    font-size: 1.5rem;
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }

  /* Navigation Buttons */
  #header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  #home-about-div {
    display: flex;
    gap: 0.8rem;
  }

  #home-btn, #about-btn{
    background-color: rgba(255, 255, 255, 0.12);
    color: white;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  #home-btn:hover, #about-btn:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
  }
  
  #home-btn:hover:before, #about-btn:hover:before {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  #home-btn:after, #about-btn:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  #home-btn:hover:after, #about-btn:hover:after {
    transform: scaleX(1);
  }

  /* Main Content Area */
  #belowHeader {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
  }

  /* Disclaimer Content */
  #full-post {
    flex: 1 1 100%;
    min-width: 300px;
    margin: 0 0 2rem 0;
    overflow-wrap: break-word;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  #full-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  }

  #post-heading-div {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
  }

  #post-heading {
    color: #2F586A;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
    line-height: 1.2;
    font-weight: 700;
  }

  #post-content-div {
    padding: 1.5rem;
    line-height: 1.8;
  }

  .disclaimer-section {
    margin-bottom: 1.5rem;
  }

  .disclaimer-section h2 {
    color: #2F586A;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
  }

  .disclaimer-section p {
    margin-bottom: 1rem;
  }

  .disclaimer-section strong {
    display: block;
    color: #2F586A;
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }

  /* Footer Styles */
  #footer-div {
    background-color: #2F586A;
    background-image: linear-gradient(to right, #2F586A, #1a3a49);
    padding: 3rem 5%;
    color: white;
  }

  #footer-companyDetail-div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  #footer-companyDetail-sub-div1 {
    flex: 1 1 60%;
    min-width: 300px;
  }

  #footer-Cname-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
  }

  #footer-logo-img {
    height: 50px;
    width: 50px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  #footer-companyName-div {
    color: white;
    padding-left: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
  }

  #company-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 0.95rem;
  }

  #footer-companyDetail-sub-div2 {
    flex: 1 1 30%;
    min-width: 200px;
  }

  #follow-us {
    color: white;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }

  #footer-connections {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .social-icon {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    transition: transform 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
  }

  .social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    background-color: rgba(255, 255, 255, 0.2);
  }

  #company-copyrights-sub-div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .terms-policy-disclaimer {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease;
  }

  .terms-policy-disclaimer:hover {
    color: white;
    text-decoration: underline;
  }

  #all-rights-reserved {
    color: white;
    text-align: center;
    font-weight: 500;
    margin-top: 1rem;
    font-size: 0.9rem;
  }

  #facebook-logo,
  #instagram-logo,
  #twitter-logo,
  #mail-logo {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  transition: transform 0.3s ease;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 5px;
  object-fit: contain;
  }

  #facebook-logo:hover,
  #instagram-logo:hover,
  #twitter-logo:hover,
  #mail-logo:hover {
  transform: translateY(-3px) scale(1.1);
  background-color: rgba(255, 255, 255, 0.2);
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    #header {
      padding: 0 4%;
      height: 60px;
    }
    
    #logo {
      height: 45px;
      width: 45px;
    }
    
    #company-name {
      font-size: 1.1rem;
      margin-left: 0.6rem;
      display: none;
    }
    
    #home-about-div {
      gap: 0.5rem;
    }
  }

  @media (max-width: 480px) {
    #header {
      padding: 0 3%;
    }
    
    #header-right {
      gap: 0.3rem;
    }
    
    #home-about-div {
      gap: 0.3rem;
    }
    
    #company-name {
      font-size: 0.9rem;
      display: none;
    }
    
    #full-post {
      margin: 0 0 1.5rem 0;
      padding: 0.5rem;
    }
    
    #post-heading {
      font-size: 1.3rem;
    }
  }