body {
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

/* Header Styling */
header {
    background-color: #034ea2;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:150px;
    position: relative;
    flex-wrap: wrap;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header-title {
    font-family: 'Trebuchet MS', sans-serif;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size:30px;
    font-weight: bold;
    color: white;
    text-align: center;
    flex-wrap: wrap;
}



.accordion-body {
    overflow-x: auto;
    width: 100%;
}

.accordion-button {
    font-family: 'Trebuchet MS', sans-serif;
    color: #ffffff !important; 
    background-color: #0056b3 !important; 
    border: 1px solid black; 
    font-weight: bold;
}


.accordion-button:hover {
    background-color: #0056b3 !important; 
    color: #ffffff !important; 
}


.accordion-button:not(.collapsed) {
    background-color: #0056b3 !important; 
    color: #ffffff !important; 
}



h1 {
    text-align: center;
    color: #034ea2;
    font-size: 32px;
}

h2 {
    color: #034ea2;
}

label {
    font-size: 18px;
    color: #034ea2;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

table {
    margin-top: 20px auto;
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

table th, table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
    font-size: 15px;
   
}


table th {
    background-color: #034ea2;
    color: white;
    font-size: 18px;
    width: 35%;
    text-align: center;
}

table tr:nth-child(even) {
    background-color: #f2f2f2;
}

table tr:hover {
    background-color: #ddd;
}

.back-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 18px;
    background-color: #034ea2;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.5s ease;
    text-align: center;
}

.back-button:hover {
    background-color: #007BFF;
}

p {
    text-align: center;
    color: #777;
}


@media (max-width: 1100px) {
    header {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }


    .header-title {
        position: static;
        transform: none;
        font-size: 28px;
        margin-top: 10px;
    }

    .sub-title {
        font-size: 24px;
    }

  
  
    .back-button {
        padding: 10px 14px;
        font-size: 14px;
    }

   


    
  