﻿.dept-section {
    padding: 60px 15px;
    background: #ffffff;
}

.dept-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* LEFT CONTENT */
.dept-content {
    width: 65%;
}

    .dept-content h2 {
        font-size: 26px;
        color: #1a2b6d;
        margin-bottom: 15px;
    }

    .dept-content p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 15px;
        color: #222;
    }

    .dept-content h4 {
        margin-top: 25px;
        font-size: 18px;
        color: #1a2b6d;
    }

    .dept-content ul {
        padding-left: 20px;
    }

        .dept-content ul li {
            margin-bottom: 8px;
        }

/* RIGHT LINKS */
.dept-links {
    width: 35%;
}

    .dept-links h3 {
        font-size: 20px;
        margin-bottom: 15px;
        color: #1a2b6d;
        border-bottom: 2px solid #1a2b6d;
        display: inline-block;
        padding-bottom: 5px;
    }

    .dept-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .dept-links ul li {
            margin-bottom: 10px;
        }

            .dept-links ul li a {
                display: block;
                padding: 14px 18px;
                background: #f2f2f2;
                color: #000;
                text-decoration: none;
                transition: all 0.3s ease;
            }

                .dept-links ul li a:hover,
                .dept-links ul li.active a {
                    background: #1a2b6d;
                    color: #fff;
                }
@media (max-width: 992px) {
    .dept-container {
        flex-direction: column;
    }

    .dept-content,
    .dept-links {
        width: 100%;
    }
}
