/* --- New Tab Styles --- */
.tabs-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-link {
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 400;
    color: #fff;
    background-color: #5E5F61;
    border: 1px solid #dce8f5;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.tab-link:hover {
    background-color: #9DCE3A;
    color: #003865;
}

.tab-link.active {
    background-color: #9DCE3A;
    color: #003865;
    border-color: #9DCE3A;
    box-shadow: 0 5px 15px rgba(157, 206, 58, 0.4);
}
/* --- End of New Styles --- */

.info-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

.info-card p {
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

.info-title {
    font-size: 1.1rem;
    font-weight: 400;
    color: #003865;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    text-shadow: none;
}

.info-content {
    font-size: 1.1rem;
    font-weight: 500;
    color: #003865;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

.info-content-list {
    padding-left: 20px;
    font-size: 1rem;
    color: #333;
}

.info-content-list li {
    margin-bottom: 10px;
    line-height: 1.7;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2) !important;
}

/* --- New Application Methods Card Styles --- */
.application-methods-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.application-methods-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #003865;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.application-methods-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: #212529;
    margin-bottom: 30px;
    text-align: center !important;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2) !important;
}

.application-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.application-contact-item i {
    font-size: 1.5rem;
    color: #003865;
    margin-right: 15px;
}

.application-contact-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #003865;
    text-transform: uppercase;
    display: block;
}

.application-contact-detail {
    font-size: 1rem;
    color: #212529;
    font-weight: 500;
}


