.announcement-section {
    text-align: center;
    padding: 30px 20px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 80px auto;
    width: 90%;
    max-width: 800px;
  }
  
  .announcement-section .section-title {
    font-size: 2.5rem;
    color: #338099;
    margin-bottom: 20px;
  }
  
  .announcement-section img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  
  .announcement-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #444;
    margin: 10px 0;
  }
  
  .announcement-section .register-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #338099;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .announcement-section .register-button:hover {
    background-color: #27677d;
  }
  
  



  /* same */

body{
    background-color: #f9f9f9;
    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%239C92AC' fill-opacity='0.4' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");  */
    font-family: 'Garamond', serif;
    }

  .footer {
    color:black; 
    padding: 20px 0;
    text-align: center;
    font-size: 1rem;
    }
    
    .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    }
    
    .footer-info p {
    margin: 5px 0;
    font-size: 1rem;
    }
    
    .footer-info i {
    color: #338099;
    margin-right: 10px;
    }
    
    .footer-social a {
    color: black;
    font-size: 2rem;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s ease;
    }
    
    .footer-social a:hover {
    color: #338099; /* Highlight color on hover */
    }
    
    .footer-bottom {
    margin-top: 15px;
    font-size: 0.9rem;
    color: black;
    }
    
    .footer-bottom p {
    margin: 0;
    }


    nav {
        position: fixed;
        top: 0;
        width: 100%;
        /*background: url('./Images/background3.jpg') no-repeat center center/cover;*/
        padding: 10px 0;
        z-index: 1000;
        /*border-bottom: 2px solid rgba(255, 255, 255, 0.7);
        /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
        
        font-family: 'Garamond', serif;
        text-shadow: 2px 2px 4px rgba(51, 128, 153, 0.8), /* Dark shadow for depth */
                     -2px -2px 2px rgba(9, 9, 9, 0); 
        
      }
      
      nav .menu {
        max-width: 1200px;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
      }
      
      nav .menu .logo {
        display: flex;
        align-items: center;
      }
      .logo a {
      
        color: black;
        text-decoration: none;
        font-size: 1.5rem;
        font-weight: bold;
      }
      
      .logo-image {
        width: 50px;
        height: 50px;
        margin-right: 10px;
        border-radius: 50%; /* Optional: circular logo */
      }
      
      nav .menu ul {
        display: flex;
        list-style: none;
      }
      
      nav .menu ul li {
        margin: 0 15px;
      }
      
      nav .menu ul li a {
        text-decoration: none;
        color: black;
        font-size: 1.2rem;
        padding: 8px 12px;
        border-radius: 4px;
        transition: background 0.3s ease;
      }
      
      nav .menu ul li a:hover {
        background: #fff;
        color: #1b1b1b;
      }



@media (max-width: 480px) {
nav .menu ul {
    flex-direction: column; 
    gap: 2px;
}

nav .menu ul li a {
    font-size: 1.4rem; 
    padding: 10px; 
}

.footer-content {
    text-align: center; 
}

.footer-social a {
    font-size: 1.5rem; 
}

.announcement-section {
    margin: 180px auto;
  }

}