.notices-section {
            /* max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            overflow: hidden; */
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding-bottom: 20px;
}

.notices-section h2 {
    text-align: center;
    padding: 20px 0;
    font-size: 2rem;
    color: #1e3c72;
    background: #f9f9f9;
    margin-bottom: 10px;
    /* border-bottom: 2px solid #1e3c72; */
}

.notices-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notices-header h2 {
            font-size: 24px;
            display: flex;
            align-items: center;
            gap: 10px;
}

.notices-header h2::before {
    content: "📢";
    font-size: 28px;
}

.view-all-btn {
    background: white;
    color: #667eea;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.notices-container {
            height: 500px;
            overflow-x: hidden;
            overflow-y: scroll;
            position: relative;
            padding: 20px 30px;
}

.notices-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* animation: scroll 60s linear infinite; */
    /* animation: scroll 60s linear both; */
}

.notices-list:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.notice-item {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #667eea;
            transition: all 0.3s;
            cursor: pointer;
}

.notice-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.notice-date {
    color: #667eea;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.notice-date::before {
    content: "📅";
    font-size: 14px;
}

.notice-title {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 5px;
}

.notice-description {
    font-size: 14px;
    color: #718096;
    line-height: 1.5;
}

.notice-badge {
    display: inline-block;
    background: #48bb78;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 8px;
}

.notice-badge.urgent {
            background: #f56565;
}

@media (max-width: 768px) {
    .notices-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .notices-container {
        height: 400px;
    }
}