body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
}

.card {
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    height: 180px;
    object-fit: cover;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 3rem;
}

.video-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
    height: 80px;
    margin-right: 15px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar-brand {
        flex-direction: column;
        text-align: center;
    }

    .navbar-brand img {
        margin-right: 0;
        height: 60px;
        /* Smaller logo on mobile */
        margin-bottom: 10px;
    }

    .navbar-brand span {
        font-size: 1.25rem !important;
        /* Smaller text on mobile */
        white-space: normal;
        /* Allow text wrapping */
        text-align: center;
    }
}

/* Desktop Font Size Adjustment */
@media (min-width: 769px) {
    .navbar-brand span {
        font-size: 2.5rem !important;
        /* Bigger font on desktop */
        font-weight: 700;
    }
}