     /* ===== Global Styles ===== */
    :root {
        --primary-color: #ff0500;
        --secondary-color: #1100ff;
        --text-color: #000;
        --light-bg: #f5f5f5;
        --dark-bg: #000;
        --border-color: #ddd;
    }
    
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
    
    body {
        font-family: 'Oswald', sans-serif;
        line-height: 1.6;
        color: #fff;
        background: black;
        overflow-x: hidden;
    }
    .floating-top {
        background: transfarant; top: 0; height: auto; left: 0; padding: 0px; position: fixed; text-align: center; width: 100%; z-index: 1001;
    }
    .floating-bottom {
        background: transfarant; bottom: 0; height: auto; left: 0; padding: 0px; position: fixed; text-align: center; width: 100%; z-index: 1001;
    }

    .floating-top img {
        width: 32%;
    }
    .floating-bottom img {
        width: 32%;
    }
    .headerbanner{
        text-align:center;
    }
    .headerbanner img {
        width:49.5%;
    }
    
    a {
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    a:hover {
        color: black;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* ===== Layout Styles ===== */
    .container2 {
        width: 70%;
        margin: 0 auto;
    }
    
    .head {
        width: 100%;
        padding: 20px 0;
        background: black;
        margin-bottom: 20px;
        border: 2px solid #0237ff;
    }
    
.logo {
    display: block;
    height: 200px;
    width: 600px;
    margin: 0 auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
    
    .menu {
	display: block;
	width: 100%;
	text-align: center;
    background: linear-gradient(to bottom, #0237ff 0%, #0237ff 50%, #0237ff 100%);
    border: 1px solid #0237ff;
    margin-bottom: 15px;
    }
    
    .menu a {
        padding: 10px 20px;
        margin: 0 5px;
        font-size: 18px;
        font-weight: 600;
        color: white;
    }
    .menu a:hover {
        color: white;
        
    }
    
    .content {
        background: black;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border: 2px solid #0237ff;
        margin-bottom: 30px;
    }

    /* ===== Typography ===== */
    h1, h2, h3, h4 {
        color: white;
    }
    
    h1 {
        font-size: 1.7rem;
        line-height: 1.0;
        margin-bottom: 30px;
        text-align: center;
    }
    
    h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        text-align: center;
    }
    
    h3 {
        font-size: 1.4rem;
        margin-top: 20px;
        margin-bottom: 10px;
        text-align: center;
    }
    
    h4 {
        font-size: 1.3rem;
    }
    
    p {
        margin-bottom: 15px;
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    /* ===== Responsive Styles ===== */
    @media (max-width: 1000px) {
        .container2 {
            width: 100%;
            margin: 0 auto;
            padding: 0 1px;
        }
        
        .logo {
            width: 300px;
            height: 120px;
        }
    }
    
    @media (max-width: 768px) {
        .floating-top img {
width:100%
}
.floating-bottom img {
width:100%
}
.lassres {
width: 100%;
margin: auto;
}
    
        .menu {
            flex-direction: column;
            align-items: center;
        }
        
        .menu a {
            display: block;
            width: 100%;
            text-align: center;
            padding: 12px;
            margin: 2px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .content {
            padding: 20px;
        }
        
        h1 {
            font-size: 1.8rem;
        }
        
        h2 {
            font-size: 1.5rem;
        }
    }
    
    @media (max-width: 576px) {
        .logo {
            width: 250px;
            height: 100px;
        }
    }
    
    /* ===== Special Elements ===== */
 .update-box {
background: #000;
border-left: 4px solid #ffc107;
padding: 15px;
margin: 20px 0;
border-radius: 0 5px 5px 0;
margin-bottom: 30px;
}
.details summary {
  cursor: pointer;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 30px;
}

.faq-item {
  padding: 10px;
  background-color: #000;
  margin-top: 10px;
}

.faq-question {
  margin: 0;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: white;
  background: linear-gradient(to left, #ff0500, #ff0509, #ff0000) !important;
}   
    /* ===== Footer ===== */
    footer {
        text-align: center;
        padding: 10px;
        color: #fff;
        font-size: 14px;
    }
