*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;

}


body{
    background-color: #01091E;
    background-image: url(../img/svgviewer-png-output.png);
    background-repeat: repeat;
    background-size: cover;
    background-position: center;
    font-family: 'Inter', sans-serif;
    padding-bottom: 100px;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}
header img{
    width: 80px;
}
header i{
    color: #2BB8A8;
    font-size: 20px;
    padding: 10px;
    border: 2px solid #2BB8A8;
    border-radius: 50%;
}

.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); 
    z-index: 1000; 
    padding: 15px 0px;
    background: linear-gradient(180deg, #01091E 0%, #104943 100%);

}

.mobile-nav ul {
    display: flex;
    justify-content: space-around; 
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-nav li {
    flex: 1; 
    text-align: center;
}

.mobile-nav a {
    display: block;
    padding: 10px 0;
    text-decoration: none;
    color: #fff; 
    font-size: 14px; 
}


.mobile-nav .active{
    color: #2bb8a8; 
}


.mobile-nav i {
    display: block;
    font-size: 20px; 
    margin-bottom: 5px; 
}











.section{
    margin: 20px 10px 10px 10px;
}

.title-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0px;
}

.title-section .title {

    font-family: 'Arial';
    font-style: normal;
    font-weight: 700;
    font-size: 23px;
    line-height: 26px;
    color: #FF8800;

}

.title-section .more {
    font-family: 'Arial';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #FFFFFF;
    border: 1px solid #000000;
    text-decoration: underline;

}

.card-container{
    display: flex;
    flex-wrap: wrap;
    align-content: start;
    gap: 10px;
}
