 .astro-bg {
            background: linear-gradient(135deg, #1A2035 0%, #151A30 100%);
        }
        .team-card {
            background-color: #222B45;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        .team-photo {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 50%;
            border: 4px solid #36A2EB;
        }
        .mission-vision {
            background-color: #222B45;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }
        .mission-vision::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, #36A2EB, #8B5CF6);
        }
        .highlight {
            color: #36A2EB;
            font-weight: 500;
        }
        .unach-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: #1A2035;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
            border: 1px solid #36A2EB;
        }