/* Accredited Training Layout Updates */
.programmes-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.programme-card {
    flex: 0 1 500px;
    max-width: 600px;
}

.programme-content {
    padding: 1rem;
    text-align: center;
}

.programme-header {
    padding: 1rem;
}

.programme-features {
    text-align: center;
}

.programme-features li {
    position: relative;
    padding-left: 0;
}

.programme-features li::before {
    display: none;
}

/* Footer Color Updates */
.footer {
    background: linear-gradient(135deg, #2E86AB 0%, #6c757d 100%);
}

.contact-item i {
    background: #6c757d;
}

.contact-form input,
.contact-form select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-form option {
    background: #2E86AB;
}

.footer-bottom a {
    color: #adb5bd;
    text-decoration: underline;
    font-weight: 600;
}

.footer-bottom a:hover {
    color: white;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

/* Button Hover Effects */
.btn-primary:hover {
    background-color: #6c757d;
    border-color: #6c757d;
    transform: translateY(-2px);
}

.btn-secondary:hover {
    background: #6c757d;
    border-color: #6c757d;
    transform: translateY(-2px);
}