@import url('../resources/main.css');


.hero-section{
    width: 100%;
    position: relative;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.hero-section::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(50, 50, 50, 0.4);

}
.hero-section h1{
    color: white;
    z-index: 2;
    font-weight: 700;
    text-transform:uppercase;
    font-size: clamp(38px,2em,48px);
}

.main-content {
    font-family: 'Roboto', sans-serif;
    background-color: #fdfdfd;
    color: #222;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 1100px;
    margin: auto;
}
.main-content h1 {
    font-size: clamp(26px,2em,38px);
    font-weight: bold;
    color: #004085;
    border-bottom: 1px solid var(--dark-color);
    padding-left: 12px;
    margin-bottom: 2rem;
}

.main-content h2 {
    font-size: 26px;
    font-weight: bold;
    color: #004085;
    border-left: 6px solid #007bff;
    padding-left: 12px;
    margin-bottom: 20px;
}

.main-content h3 {
    font-size: 22px;
    color: #007bff;
    margin-top: 18px;
}

.main-content ul {
    list-style-type: none;
    padding: 0;
}

.main-content ul li {
    background: #eff6ff;
    padding: 14px;
    margin: 6px 0;
    border-radius: 8px;
    font-size: 17px;
    transition: all 0.3s ease-in-out;
}

.main-content ul li:hover {
    background: #cde5ff;
    transform: translateY(-2px);
}

.main-content .btn-primary {
    background: linear-gradient(135deg, #007bff, #004aad);
    border: none;
    padding: 12px 18px;
    font-size: 17px;
    font-weight: bold;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    text-decoration: none;
}

.main-content .btn-primary:hover {
    background: linear-gradient(135deg, #004aad, #002f70);
    transform: translateY(-3px);
}
.main-content p{
    line-height: 1.4rem;
}
.main-content table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 18px;
    border-radius: 8px;
    overflow: hidden;
}

.main-content th, 
.main-content td {
    border: 1px solid #ddd;
    padding: 14px;
    text-align: left;
    font-size: 17px;
}

.main-content th {
    background: #007bff;
    color: #fff;
    font-weight: bold;
}

.main-content tr:nth-child(even) {
    background: #f8f9fa;
}

.main-content .p-4 {
    padding: 22px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .main-content {
        padding: 15px;
    }

    .main-content h2 {
        font-size: 22px;
    }

    .main-content h3 {
        font-size: 19px;
    }

    .main-content ul li {
        font-size: 15px;
        padding: 12px;
    }

    .main-content table, 
    .main-content th, 
    .main-content td {
        font-size: 15px;
        padding: 10px;
    }

    .main-content .btn-primary {
        font-size: 15px;
        padding: 10px 14px;
    }
}
