/* Styles for the tabbed interface */
.tabs-container {
    display: flex;
    flex-direction: row;
   
    
}


.tabs {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 17%;
    margin-left: 10%;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    margin-top: 1%;
    margin-bottom: 3%;
    font-family: var(--familyRobo);
    border-radius: 6px;
    margin-right: 10px;
}

.tab {
    padding: 12px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 18px;
    color: #0b2356;
    /* border-style: outset; */
   display:flex;
    border-bottom: 2px solid #EF8A43;
}

.tab:hover {
    background-color: #ddd;
}

/* img {
    vertical-align: middle;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-style: none;
    max-width: 58%;
    border: 11px solid #8716161f;
    border-radius: 4px;
} */

.content {
    width: 80%;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 1%;
    margin-bottom: 3%;
    /* overflow:scroll; */
}

/* Styles for the tabbed content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.heading h2{
    flex: 2;
    color: rgb(0, 30, 76);
    border-radius: 5px; 
    font-weight: bold;
    font-family: var(--familyMonts);
    font-size: 2.4rem;
    line-height: 4.2rem;
    font-weight: 800;
    position: relative;
    display: block;
     text-align:left;

}
/* Additional styling for aesthetics (you can customize) */
body {
    font-family: Arial, sans-serif;
    background-color: white;
    margin: 0;
    padding: 0;
}

h1 {
    color: #052878;
    font-size: 24px;
}

p {
    color: #333;
    font-size: 17px;
    font-family:var(--familyRobo);
    padding-top: 3px;
    text-align: justify;
}



/* Responsive adjustments for smaller screens */
@media screen and (max-width: 768px) {
    .tabs-container {
            flex-direction: column;
            align-items: center;
            margin-top:45%;
        }

        .tabs {
            width: 100%;
            margin: 0;
            margin-top: 5%;
            margin-bottom: 3%;
            margin-left: 0;
            margin-right: 0;
        }
        
        .tab {
    padding: 12px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 18px;
    color: #0b2356;
    /* border-style: outset; */
    display:flex;
    flex-direction: column;
    border-bottom: 2px solid #EF8A43;
}

.heading h2{
    flex: 2;
    color: rgb(0, 30, 76);
    border-radius: 5px; 
    font-weight: bold;
    font-family: var(--familyMonts);
    font-size: 1.4rem;
    line-height: 4.2rem;
    font-weight: 800;
    position: relative;
    display: block;
     text-align:left;

}
}