*{
    /*margin: 0;
    padding: 0;*/

        font-family: 'Roboto Flex', sans-serif;         
    /* font-family: Arial, sans-serif; */
}

.header{
    margin: 0;
    padding: 0;
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), url(promo1.png);
    background-position: center;
    background-size: cover;
    position: relative;
}

body{  
    margin:0;
    padding: 20px;  
    background-position: center;
    background-size: cover;    
    color: black;    
    position: relative;
    background-color: rgba(0,0,0,0.1);
     
}


nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}

nav img{
    width: 300px;
}

.nav-links{
    flex: 1;
    text-align: right;    
}

.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a{
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: cyan;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after{
    width: 100%;
}

.text-box{
    width: 90%;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-box h1{
    font-size: 62px;
}

.text-box p{
    margin: 10px 0 40px;
    font-size: 20px;
    color: white;
}

.t700-button{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 16px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.t700-button:hover{
    border: 1px solid cyan;
    background: cyan;
    transition: 1s;
    color: black;

}

.t700-header{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), url(promo2.png);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}

.t700-header h1
{
    margin-top: 100px;
}

.t700main{    
    background-position: center;
    background-size: cover;    
    color: black;    
    position: relative;
    /* background-color: rgba(0,0,0,0.1); */
     
}

.c2-header{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(60, 75, 134, 0.7), rgba(54, 87, 220, 0.7)), url(C2-picture9.png);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}

.c2-header h1{
    margin-top: 100px;
}


.f4-header{    
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(60, 75, 134, 0.7), rgba(54, 87, 220, 0.7)), url(F4-photo6.png);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;    
}

.f4-header h1{
    margin-top: 100px;
}

.AOAimages {
    display: flex;
    justify-content: left; /* Align images horizontally centered */
}
.AOAimages img {
    width: 30%; /* Set width for each image */
    margin: 0 20px; /* Add space between the images */
}

section {
    margin: 10px auto;
    padding: 20px;
    max-width: 1200px;     
    background-color: rgba(0,0,0,0.01);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

section p, ul li, ol li{
    font-size: 16px;
    margin-bottom: 10px;
}

section h2 {
    font-size: 28px;
    color: black;
    margin-bottom: 15px;
    border-bottom: 2px solid #a81414;
    padding-bottom: 5px;
}

 /* Table container styling */
 .table-container {
    max-width: 800px;
    margin: auto;
    overflow-x: auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

/* Table styling */
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    background-color: #fff;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #333;
    color: #fff;
    font-weight: bold;
}

/* Styling for rows */
tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    table, th, td {
        font-size: 14px;
    }
}

/* Optional hover effect */
tr:hover {
    background-color: #f1f1f1;
}