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;
}


.hero-section {
    display: flex;
    align-items: center;
    justify-content: center; 
    text-align: center; 
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.90);
    color: #fde700;
}

.hero-content {
    max-width: 80%; 
    padding: 20px;
}


.social-icon img {
    width: 24px; 
    height: 24px;
}

.hero-section h1 {
    font-size: 46px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
}


h2 {
    font-size: 1.5em;
    margin: 20px;
    color: #C80000;
}

p {
    margin: 20px;
    text-align: justify;
}


.image {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
}


.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-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #444;
}

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

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

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


@media (max-width: 768px) {
    .footer-section {
        width: 100%;
        text-align: center;
    }

    .image-content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .image, .content {
        width: 100%;
    }

    .content {
        margin-top: 20px;
    }
}

 .hero-content {
        max-width: 100%; 
    }

