body {
   margin: 0;
   font-family: 'Roboto', sans-serif;
   padding-top: 80px; 
  }
  header {
   position: fixed;
   top: 0;
   width: 100%; 
   display: flex;
   justify-content: space-between;
   align-items: center;
   min-height: 80px; 
 padding: 5px 30px;
   background-color: rgba(0, 0, 0, 0.85);
   color: #fff;
    transition: background-color 0.3s, color 0.3s;
   z-index: 1000;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  } 

.header-scrolled {
    background-color: rgba(255, 255, 255, 0.2);
}
  .logo img {
   width: 150px; 
   transition: opacity 0.3s;
  }  

nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 100px;
    gap: 10px;
}

nav a, .dropbtn {
    text-decoration: none;
    color: inherit;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
    padding: 10px 20px;
    margin: 0;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
}

nav a:hover, .dropbtn:hover {
    color: #Fdd700;
    border-bottom: 2px solid #ffd700;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    top: 100%;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: #333;
    text-align: center;
}

.dropdown:hover .dropdown-content {
    display: block;
}




.terms-and-conditions-content  {  
    padding: 50px 0px 0px 0px ;
text-align: center;
}

h1 {
    padding: 0px 0px 10px 0px;
}
h2 {
    padding: 0px 0px 10px 20px;
font-size: .9em;

}

.content {
    padding: 10px 80px 400px 80px;
}

p {
    padding: 10px 20px 0px 20px;
}



@media (max-width: 768px) {
    .privacy-policy-content {
        padding: 10px;
        max-width: 100%;
    }
}


@media (max-width: 768px) {
    .about-img, .hero-image img {
        max-width: 100%; 
    }
}


/* Footer Styles */
.site-footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    width: 20%;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 5px;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-section .social-links {
    text-align: center;
}

.footer-section .social-icon {
    margin: 0 5px;
}
.footer-section .social-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
}

 
 .social-links {
  text-align: center;
}
 
.social-icon {
  display: inline-block;
  width: 32px;
  height: 32px;
 }

.social-icon img {
    width: 100%;
    height: 100%;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #444;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.4em;
}

.footer-bottom a {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-section {
        width: 100%;
        text-align: center;
    }
}
 .footer-bottom a:hover {
  color: #ffd700;
 }


@media (max-width: 768px) {
    header {
        padding: 10px 20px; 
    }

    .logo img {
        width: 150px; 
    }
    nav {
        flex-direction: column;
        align-items: center;
        padding-right: 20px; 
    }

    nav a, .dropbtn {
        font-size: 14px; 
        padding: 5px; 
        border-bottom: none;
    }

    .dropdown-content {
        min-width: 120px; 
    }

    
    nav a:not(:first-child) {
        display: none;
    }

    
    .menu-btn {
        display: inline-block;
        font-size: 24px; 
        cursor: pointer;
    }
}

.hero-image img {
    max-width: 100%; 
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
}
    
     .footer-section .social-links {
        justify-content: center; 
        width: 100%; 
         margin-top: 10px; 
    }

    .footer-section .social-icon {
        margin: 0 auto; 
    }


.footer-container {
    width: 100%;
}

