body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.section-container {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    margin-top: 25px;
    margin-bottom: 25px;
    background-color: #fff;
    border-radius: 10px;
    border-top: 3px solid purple;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-heading {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.section-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #007bff;
    border-radius: 5px;
    animation: slide-in 0.5s ease-out;
}

.links-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 7px;
}

.link-box {
    display: inline-block;
    padding: 10px 20px;
    background-color: #280023;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(183, 0, 255, 0.3);
}

@keyframes slide-in {
    from {
        width: 0;
    }
    to {
        width: 50px;
    }
}
@media (max-width: 768px) {

    .section-container {
        width: 83%;}
}
