@charset "utf-8";

{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  
  background-image: url('background.jpg'); 
  background-repeat: repeat;
  background-color: #f4f4f4; /* Fallback color */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
  padding-bottom: 0px; 
}


.banner img {
  display: block; 
  max-width: 100%;
  width: 1024px; 
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  margin: 0 auto;
}


.navbar {
  margin: 0 auto;
  max-width: 1024px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #333;
  overflow: hidden;
  display: block;
}

.navbar ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
}

.navbar li {
  margin: 0;
}

.navbar a {
   display: block;
  color: #ddb163;
  text-align: center;
  padding: 14px 35px;/
  text-decoration: none;
  transition: background-color 1.75s ease;
}


.navbar a:hover {
  background-color: #1c2d5b;
}


.navbar a.active {
  background-color: #04AA6D;
}


.mainflex {
  max-width: 1024px;
  margin: 20px auto;
  background-color: rgba(255, 255, 255, 0.95); 
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.0);
}

.mainflex h1 {
  text-align: center;
  color: #1c2d5b;
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-transform: uppercase;
  border-bottom: 2px solid #ddb163;
  padding-bottom: 10px;
}

.section-one {
  margin-bottom: 30px;
}

.section-one h2 {
  color: #333;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.section-one p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}

.section-two {
  background-color: #1c2d5b;
  color: #ddb163;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  margin-top: 40px;
  border: 2px solid #ddb163;
}

.section-two h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}





.arrows {

  display: flex;          
  justify-content: center;
   text-align: center;  
  align-items: center;    
  gap: 10px;               
   padding: 0%;
   Border: 0%;
   margin: 0%:
   max-width:300px;
   max-height:auto;
}


.arrows img {
  transform: scale(0.5) ;             
  height: auto;           
  
}

.footer a {
  color: #00bfff;
  text-decoration: none;
  margin: 0 10px;
}

.footer a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
    
    .arrows {
		 transform: scale(0.5);
        flex-direction: column;
    }

    